|
|
|
|
|
by galleywest
1764 days ago
|
|
Are you using the imports in your file? The VS Code Go addon has "format on save" enabled by default and Go will not compile if there are unused imports - so VS Code deletes the unused imports on save by default. Otherwise try a "go mod init" in the root of your project. |
|