mirror of
https://github.com/usememos/memos.git
synced 2024-12-19 09:02:49 +03:00
20 lines
513 B
Go
20 lines
513 B
Go
|
package server
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/labstack/echo/v4"
|
||
|
)
|
||
|
|
||
|
func (s *Server) registerSystemRoutes(g *echo.Group) {
|
||
|
g.GET("/ping", func(c echo.Context) error {
|
||
|
c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
|
||
|
if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(s.Profile)); err != nil {
|
||
|
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to compose system profile").SetInternal(err)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
})
|
||
|
}
|