0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch-backend.git synced 2024-12-22 13:13:00 -05:00
safetwitch-backend/routes/routes.go
2023-05-18 10:17:08 -04:00

11 lines
153 B
Go

package routes
import (
"safetwitch-backend/routes/users"
"github.com/gin-gonic/gin"
)
func SetRoutes(router *gin.Engine) {
users.Routes(router)
}