feat: use no cgo sqlite as default

This commit is contained in:
line-6000
2026-03-27 17:04:43 +08:00
parent 1e4cf0fdd5
commit d6e7927605
8 changed files with 122 additions and 70 deletions
+3 -2
View File
@@ -1,16 +1,17 @@
package route
import (
"net/http"
"github.com/assimon/luuu/controller/comm"
"github.com/assimon/luuu/middleware"
"github.com/labstack/echo/v4"
"net/http"
)
// RegisterRoute 路由注册
func RegisterRoute(e *echo.Echo) {
e.Any("/", func(c echo.Context) error {
return c.String(http.StatusOK, "hello epusdt, https://github.com/assimon/epusdt")
return c.String(http.StatusOK, "hello epusdt, https://github.com/GMwalletApp/epusdt")
})
// ==== 支付相关=====
payRoute := e.Group("/pay")