1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-04-23 11:07:43 +02:00

8 lines
107 B
Go
Raw Normal View History

2021-11-24 11:27:23 +08:00
package route
import "github.com/gin-gonic/gin"
type Registrar interface {
RegisterRoute(gin.IRoutes)
2021-11-24 11:27:23 +08:00
}