You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
240 B

package main
import (
"github.com/gin-gonic/gin"
"github.com/zggsong/gin-vue-demo/router"
)
func main() {
// DB := common.GetDB()
// defert DB.Close()
r := gin.Default()
r = router.CollectRoute(r)
panic(r.Run("127.0.0.1:8080"))
}