Initial commit

This commit is contained in:
Ilya Suhodolskiy
2023-05-13 19:20:49 +04:00
commit 7afbff6a12
10 changed files with 235 additions and 0 deletions

14
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Run App",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/main.go",
"cwd": "${workspaceFolder}",
"args": ["-port", "5173"]
}
]
}