Lee-WineList/router/wine.go

11 lines
148 B
Go
Raw Normal View History

2023-04-27 15:56:12 +08:00
package router
import (
"Lee-WineList/api/app"
"github.com/gin-gonic/gin"
)
func wine(g *gin.RouterGroup) {
g.GET("", app.WineApi().GetList)
}