mirror of
https://codeberg.org/SafeTwitch/safetwitch-backend.git
synced 2025-02-08 04:37:58 -05:00
15 lines
236 B
Go
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!",
|
|
})
|
|
})
|
|
}
|