0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch-backend.git synced 2025-02-07 20:28:24 -05:00
safetwitch-backend/routes/users/users.go
2023-05-18 10:17:08 -04:00

15 lines
236 B
Go

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!",
})
})
}