mirror of
https://github.com/usememos/memos.git
synced 2025-02-23 14:47:44 +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")
|
||
|
})
|
||
|
}
|