wails project init

This commit is contained in:
2024-12-13 20:54:24 -06:00
parent 34c1319f44
commit 17c35e59c5
48 changed files with 4366 additions and 2 deletions

32
.vscode/launch.json vendored Executable file
View File

@@ -0,0 +1,32 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Wails: Production vastop",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceFolder}/build/bin/vastop.exe",
"preLaunchTask": "build",
"cwd": "${workspaceFolder}"
},
{
"name": "Wails: Debug vastop",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceFolder}/build/bin/vastop.exe",
"preLaunchTask": "build debug",
"cwd": "${workspaceFolder}"
},
{
"name": "Wails: Dev vastop",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceFolder}/build/bin/vastop.exe",
"preLaunchTask": "build dev",
"cwd": "${workspaceFolder}"
}
]
}