mirror of
https://github.com/usememos/memos.git
synced 2025-03-04 01:04:38 +08:00
chore: add /healthz
endpoint
This commit is contained in:
parent
472afce98f
commit
8586ebf098
1 changed files with 6 additions and 0 deletions
|
@ -99,6 +99,12 @@ func NewServer(ctx context.Context, profile *profile.Profile, store *store.Store
|
|||
}
|
||||
s.Secret = secret
|
||||
|
||||
// Register healthz endpoint.
|
||||
e.GET("/healthz", func(c echo.Context) error {
|
||||
return c.String(http.StatusOK, "OK!\n")
|
||||
})
|
||||
|
||||
// Register API v1 endpoints.
|
||||
rootGroup := e.Group("")
|
||||
apiV1Service := apiv1.NewAPIV1Service(s.Secret, profile, store, s.telegramBot)
|
||||
apiV1Service.Register(rootGroup)
|
||||
|
|
Loading…
Reference in a new issue