package api import ( "git.aiterp.net/lucifer/new-server/models" "github.com/gin-gonic/gin" ) func DriverKinds(r gin.IRoutes) { r.GET("", handler(func(c *gin.Context) (interface{}, error) { return models.ValidDriverKinds, nil })) }