nginx-proxy-manager/backend/internal/status/status.go

11 lines
229 B
Go
Raw Normal View History

package status
const (
// StatusReady means a host is ready to configure
StatusReady = "ready"
// StatusOK means a host is configured within Nginx
StatusOK = "ok"
// StatusError is self explanatory
StatusError = "error"
)