Write a simple wallet REST API.
We expect the following:
- account deposits
- account withdraws
- balance enquiry
- Mini statement
Added advantage:
- Using Go Modules
- Using Postgres.
- Unit tests
- Code coverage on the tests
Clearly document how to set up and run your application.
To run the app
go run ./cmd/server
To setup the app
go get ./...
To run tests
go test ./...
To run tests with coverage
go test ./... -cover