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