mirror of
https://github.com/Damillora/Shioriko.git
synced 2024-11-01 04:27:33 +00:00
17 lines
276 B
Go
17 lines
276 B
Go
package app
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func InitializeRoutes(g *gin.Engine) {
|
|
InitializeUserRoutes(g)
|
|
InitializeAuthRoutes(g)
|
|
InitializeTagTypeRoutes(g)
|
|
InitializeTagRoutes(g)
|
|
InitializeBlobRoutes(g)
|
|
InitializePostRoutes(g)
|
|
|
|
InitializeFrontendRoutes(g)
|
|
}
|