Go Project Organizations and other temporary tries
Go to file
Aliberk Sandıkçı dc109c6e4b
refactor: readme
2023-07-24 09:24:11 +03:00
.gitignore Initial commit 2023-07-19 15:03:27 +03:00
LICENSE Initial commit 2023-07-19 15:03:27 +03:00
README.md refactor: readme 2023-07-24 09:24:11 +03:00

README.md

go-organization

Understand project structure of GO. Go Modules, GOPATH, efficent development environment...

Base Resources

FAQ

Is there any venv equal for Go language or any virtual environment tool?


  • No, previously GOPATH was used but now Go Modules are using instead of that. Thanks to Go Modules, go.mod file handles all versions/modules/packages and there is no need for a virtual environment. But if you have to use a virtual environment because of another reason just have a look at [this](https://github.com/GetStream/vg) repo