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