Last active
July 18, 2024 21:54
-
-
Save devdrops/47177b034a5acfff155ebbc580140e1a to your computer and use it in GitHub Desktop.
Revisions
-
devdrops revised this gist
Jul 18, 2024 . 1 changed file with 13 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ { "version": "0.2.0", "configurations": [ { "name": "Debug", "type": "go", "request": "launch", "mode": "debug", "program": "${workspaceFolder}/cmd/main.go", "cwd": "${workspaceFolder}" } ] } -
devdrops created this gist
Jul 18, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ # Debug settings for Go projects on VS Code ```json { "version": "0.2.0", "configurations": [ { "name": "Debug", "type": "go", "request": "launch", "mode": "debug", "program": "${workspaceFolder}/cmd/main.go", "cwd": "${workspaceFolder}" } ] } ```