Golang Backend born to serve nice and dry data out of REST APis.
On project's folder:
- Run:
go run server.go
- Test one package:
go test package_name
- Test all packages:
go test ./...
- Test one file:
go test -run fileName
orgo test -run Say my/package/import/path
- Build:
go build
- Install:
go install