diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..6b9fdc4 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,14 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Launch Executable", + "type": "go", + "request": "launch", + "mode": "exec", + "program": "${workspaceRoot}/GoBlog", + "cwd": "${workspaceRoot}", + "preLaunchTask": "Build" + } + ] +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..8e0ae73 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,10 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Build", + "type": "shell", + "command": "go build" + } + ] + } \ No newline at end of file