package users import ( "safetwitch-backend/extractor" "safetwitch-backend/extractor/twitch" "github.com/gin-gonic/gin" ) func Routes(route *gin.Engine) { auth := route.Group("/api/users") auth.GET("/:streamerName", func(context *gin.Context) { data, err := twitch.GetStreamerInfo(context.Param("streamerName")) if err != nil { if err.Error() == "streamer not found" { context.JSON(404, gin.H{ "status": "error", "message": "streamer not found", }) } else { context.Error(err) return } return } context.JSON(200, extractor.FormatMessage(data, true)) }) }