├── .gitignore ├── LICENCE ├── README.md ├── go.mod ├── go.sum ├── lint.go └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenafamo/golangci-server/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenafamo/golangci-server/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenafamo/golangci-server/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenafamo/golangci-server/HEAD/go.sum -------------------------------------------------------------------------------- /lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenafamo/golangci-server/HEAD/lint.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenafamo/golangci-server/HEAD/main.go --------------------------------------------------------------------------------