We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78e01bc commit 8b00460Copy full SHA for 8b00460
.gitignore
@@ -68,3 +68,6 @@ bin/
68
# Static Analysis Results Interchange Format
69
*.sarif
70
.dccache
71
+
72
+# Settings
73
+.vscode/launch.json
.vscode/launch.json.suggested
@@ -0,0 +1,18 @@
1
+{
2
+ // Use IntelliSense para saber los atributos posibles.
3
+ // Mantenga el puntero para ver las descripciones de los existentes atributos.
4
+ // Para más información, visite: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+ {
8
+ "name": "DebugServer",
9
+ "type": "go",
10
+ "request": "launch",
11
+ "mode": "debug",
12
+ "program": "${workspaceFolder}",
13
+ "dlvFlags": [
14
+ "--check-go-version=false"
15
+ ]
16
+ }
17
18
+}
0 commit comments