0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch-backend.git synced 2025-02-01 17:18:46 -05:00
safetwitch-backend/routes/users/users.go

16 lines
236 B
Go
Raw Normal View History

2023-05-18 10:17:08 -04:00
package users
import (
"github.com/gin-gonic/gin"
)
func Routes(route *gin.Engine) {
auth := route.Group("/users")
auth.GET("/test", func(context *gin.Context) {
context.JSON(200, gin.H{
"message": "i'm working!",
})
})
}