初始化提交

This commit is contained in:
des
2025-12-28 18:45:43 +08:00
commit 960d7e6fcc
7 changed files with 113 additions and 0 deletions

13
controller/user.go Normal file
View File

@@ -0,0 +1,13 @@
package controller
import (
"net/http"
"github.com/labstack/echo"
)
func Register(srv *echo.Echo) {
srv.GET("/login", func(context echo.Context) error {
return context.String(http.StatusOK, "Hello, World!")
})
}