refactor: readme

This commit is contained in:
Aliberk Sandıkçı 2023-07-24 09:24:11 +03:00
parent dfb0e2595e
commit dc109c6e4b
Signed by: asandikci
GPG Key ID: 25C67A03B5666BC1
1 changed files with 3 additions and 2 deletions

View File

@ -12,6 +12,7 @@ Understand project structure of GO. Go Modules, GOPATH, efficent development env
### FAQ
<details>
<summary>Is there any venv equal for Go language or any virtual environment tool?</summary>
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
<summary><h4>Is there any venv equal for Go language or any virtual environment tool?</h4></summary>
<br><ul><li> 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
</li></ul>
</details>