mirror of
https://github.com/tgdrive/teldrive.git
synced 2024-11-10 17:14:03 +08:00
10 lines
181 B
Go
10 lines
181 B
Go
package routes
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func GetRoutes(router *gin.Engine) {
|
|
api := router.Group("/api")
|
|
addAuthRoutes(api)
|
|
addFileRoutes(api)
|
|
addUploadRoutes(api)
|
|
}
|