woj-server/internal/model/router.go

13 lines
194 B
Go
Raw Permalink Normal View History

2023-07-15 16:19:49 +08:00
package model
2022-09-08 22:00:25 +08:00
import (
"github.com/gin-gonic/gin"
2023-07-15 16:19:49 +08:00
"github.com/samber/do"
2022-09-08 22:00:25 +08:00
)
type EndpointInfo struct {
Version string
Path string
2023-07-15 16:19:49 +08:00
Register func(rg *gin.RouterGroup, i *do.Injector)
2022-09-08 22:00:25 +08:00
}