https://github.com/willianantunes/go-playground
This map is totally blank for me. Let's discover it until we find the treasure!
https://github.com/willianantunes/go-playground
api database go parser
Last synced: 6 months ago
JSON representation
This map is totally blank for me. Let's discover it until we find the treasure!
- Host: GitHub
- URL: https://github.com/willianantunes/go-playground
- Owner: willianantunes
- License: mit
- Created: 2021-08-08T15:43:30.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-15T00:33:29.000Z (over 4 years ago)
- Last Synced: 2025-08-22T09:47:27.149Z (6 months ago)
- Topics: api, database, go, parser
- Language: Go
- Homepage:
- Size: 755 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go Playground
Yet another playground project. This time to learn a bit of Go! Know the business details about this project looking at the [docs](./docs) folder.
Soon I'll give you more information.
## How to manage dependencies
If you want to install packages:
go get -u gorm.io/gorm
go get -u gorm.io/driver/postgres
You can know how it works with the following command:
go help get
Let's say [you install a package, and you want to remove it](https://stackoverflow.com/a/57186981/3899136), given it's not being used anywhere, you can execute the command below:
go mod tidy
## Links
Official:
- [The Go Programming Language Specification](https://golang.org/ref/spec)
- [Effective Go](https://golang.org/doc/effective_go)
Others:
- [How to Structure a Golang Project](https://qvault.io/golang/golang-project-structure/)