shop-example/main.go

17 lines
182 B
Go
Raw Normal View History

2023-08-13 03:55:20 +00:00
package main
import (
"github.com/gin-gonic/gin"
router2 "worktest/pkg/router"
)
func main() {
router := gin.Default()
router2.RegisterRoute(router)
router.Run(":8000")
}