mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
12 lines
158 B
Go
12 lines
158 B
Go
|
package grpc
|
||
|
|
||
|
const (
|
||
|
Healthz = "/Healthz"
|
||
|
Readiness = "/Ready"
|
||
|
Validation = "/Validate"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
Probes = []string{Healthz, Readiness, Validation}
|
||
|
)
|