mirror of
https://github.com/usememos/memos.git
synced 2025-02-22 22:27:37 +01:00
10 lines
196 B
Go
10 lines
196 B
Go
package v1
|
|
|
|
import "github.com/labstack/echo/v4"
|
|
|
|
func (*APIV1Service) registerTestRoutes(g *echo.Group) {
|
|
g.GET("/test", func(c echo.Context) error {
|
|
return c.String(200, "Hello World")
|
|
})
|
|
}
|