Initial Spec done. More work to do. Need to bring in Argitek designs

This commit is contained in:
2025-01-08 23:45:53 +02:00
parent 7ce04e2032
commit f284e55a5c
22 changed files with 2150 additions and 2 deletions

44
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,44 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "go",
"label": "go: build workspace",
"command": "build",
"options": {
"env": {
"CGO_ENABLED": "0"
},
"cwd": "${workspaceFolder}/bin",
},
"args": [
"../..."
],
"problemMatcher": [
"$go"
],
"group": "build",
},
{
"type": "go",
"label": "go: test workspace",
"command": "test",
"options": {
"env": {
"CGO_ENABLED": "0"
},
"cwd": "${workspaceFolder}/bin",
},
"args": [
"../..."
],
"problemMatcher": [
"$go"
],
"group": "build",
},
]
}