mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-15 12:12:58 +08:00
8 lines
120 B
Go
8 lines
120 B
Go
|
package router
|
||
|
|
||
|
import "github.com/gin-gonic/gin"
|
||
|
|
||
|
type CommonRouter interface {
|
||
|
InitRouter(Router *gin.RouterGroup)
|
||
|
}
|