Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nnqq/healthz

🙅‍♂️ Stop boilerplate!! HTTP healthcheck
https://github.com/nnqq/healthz

go healthcheck http

Last synced: 9 days ago
JSON representation

🙅‍♂️ Stop boilerplate!! HTTP healthcheck

Awesome Lists containing this project

README

        

# healthz

HTTP healthcheck

```
go get github.com/nnqq/healthz
```

```go
package main

import "github.com/nnqq/healthz"

func main() {
h := healthz.NewHealthz()
err := h.Serve()
if err != nil {
panic(err)
}
}
```