mirror of
https://codeberg.org/SafeTwitch/safetwitch-backend.git
synced 2024-12-22 13:13:00 -05:00
11 lines
153 B
Go
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)
|
|
}
|