Applications covered in the book "Modern Web Development with Go" ⭐️⭐️⭐️⭐️⭐️
main: adding my own improvements to the final app in the book (PostgreSQL version)
postgresql: follows the primary PostgreSQL implementation of the application
dynamodb: implements DynamoDB version of the application
mysql: implements MySQL version of the application
repo-interface: provides an example of how Go Interfaces can be used to simplify the application
go build main.go
go run main.go
go mod init
go mod tidy
go test -v -coverpkg=./.. ./... -coverprofile=coverage.out
go tool cover -html=coverage.out
View book: Modern Web Development with Go