Logger
All checks were successful
release-nightly / build-docker (push) Successful in 1m1s

This commit is contained in:
2023-11-25 23:06:23 +08:00
parent ad3b36bc2a
commit 3dab1dbd46
3 changed files with 34 additions and 3 deletions

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

@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Run RoadSign",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/pkg/cmd/main.go",
"cwd": "${workspaceFolder}"
}
]
}