We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ef447d commit cd6abf5Copy full SHA for cd6abf5
.gitignore
@@ -1,6 +1,7 @@
1
# Ignore certain directories
2
build/
3
bin/
4
+scratch/
5
6
# Ignore certain files
7
.env
.vscode/launch.json
@@ -5,11 +5,18 @@
"version": "0.2.0",
"configurations": [
{
8
- "name": "Debug Server",
+ "name": "Server",
9
"type": "go",
10
"request": "launch",
11
"mode": "auto",
12
"program": "${workspaceFolder}/main.go"
13
}
14
+ {
15
+ "name": "Scratch",
16
+ "type": "go",
17
+ "request": "launch",
18
+ "mode": "auto",
19
+ "program": "${workspaceFolder}/scratch/scratch.go",
20
+ }
21
]
22
0 commit comments