├── .gitignore ├── .golangci.yml ├── LICENSE ├── Makefile ├── README.md ├── cmd └── root.go ├── go.mod ├── go.sum ├── internal └── status │ ├── http-statuses.csv │ └── status.go └── main.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sterchelen/hssp/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sterchelen/hssp/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sterchelen/hssp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sterchelen/hssp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sterchelen/hssp/HEAD/README.md -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sterchelen/hssp/HEAD/cmd/root.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sterchelen/hssp/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sterchelen/hssp/HEAD/go.sum -------------------------------------------------------------------------------- /internal/status/http-statuses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sterchelen/hssp/HEAD/internal/status/http-statuses.csv -------------------------------------------------------------------------------- /internal/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sterchelen/hssp/HEAD/internal/status/status.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sterchelen/hssp/HEAD/main.go --------------------------------------------------------------------------------