|
|
|
|
|
by staunch
1526 days ago
|
|
Nice! Looks like a good start. As some have noted in this thread there are some issues but nothing you can't fix. I'd recommend running `go vet -a` and `golangci-lint` on it to see some of the current issues: $ go vet -a
$ docker run --rm "--volume=$(pwd):/app" --workdir=/app golangci/golangci-lint:latest golangci-lint run
|
|