mirror of
https://github.com/tgdrive/teldrive.git
synced 2025-01-10 09:09:43 +08:00
9 lines
139 B
Go
9 lines
139 B
Go
|
package routes
|
||
|
|
||
|
import "github.com/gin-gonic/gin"
|
||
|
|
||
|
func GetRoutes(router *gin.Engine) {
|
||
|
api := router.Group("/api")
|
||
|
addFileRoutes(api)
|
||
|
}
|