Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nnqq/healthz
- Owner: nnqq
- License: mit
- Created: 2021-07-19T17:42:27.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-07-19T20:40:49.000Z (over 3 years ago)
- Last Synced: 2023-07-28T12:58:03.785Z (over 1 year ago)
- Topics: go, healthcheck, http
- Language: Go
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# healthz
HTTP healthcheck
```
go get github.com/nnqq/healthz
``````go
package mainimport "github.com/nnqq/healthz"
func main() {
h := healthz.NewHealthz()
err := h.Serve()
if err != nil {
panic(err)
}
}
```