尝试引入 go-spring

This commit is contained in:
des
2026-01-21 17:44:51 +08:00
parent 35a31a6614
commit feb235e11d
9 changed files with 107 additions and 48 deletions

View File

@@ -0,0 +1,14 @@
package application
import (
"github.com/gin-gonic/gin"
)
type Controller interface {
RegisterRoute()
}
func New() *gin.Engine {
app := gin.Default()
return app
}