mirror of
https://github.com/go-micro/go-micro.git
synced 2025-04-23 11:07:43 +02:00
9 lines
146 B
Go
9 lines
146 B
Go
|
package route
|
||
|
|
||
|
import "github.com/gin-gonic/gin"
|
||
|
|
||
|
type Registrar interface {
|
||
|
RegisterAuthRoute(gin.IRoutes)
|
||
|
RegisterNonAuthRoute(gin.IRoutes)
|
||
|
}
|