Use TwinProduction/health for health endpoint

This commit is contained in:
TwinProduction
2021-02-12 23:29:21 -05:00
parent 9cdef02bdc
commit ea9623f695
11 changed files with 147 additions and 8 deletions

8
vendor/github.com/TwinProduction/health/status.go generated vendored Normal file
View File

@ -0,0 +1,8 @@
package health
type Status string
var (
Down Status = "DOWN"
Up Status = "UP"
)