8 lines
100 B
Go
8 lines
100 B
Go
|
|
package interfaces
|
||
|
|
|
||
|
|
import "github.com/gin-gonic/gin"
|
||
|
|
|
||
|
|
type Router interface {
|
||
|
|
Set() *gin.Engine
|
||
|
|
}
|