0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch-backend.git synced 2024-12-22 05:02:58 -05:00
safetwitch-backend/routes/root/root.go
2023-06-07 12:25:52 -04:00

21 lines
448 B
Go

package root
import (
"safetwitch-backend/extractor"
"safetwitch-backend/extractor/chat"
"github.com/gin-gonic/gin"
)
func Routes(route *gin.Engine) {
auth := route.Group("/")
auth.GET("", func(context *gin.Context) {
upgradeHeader := context.Request.Header.Get("Upgrade")
if upgradeHeader == "websocket" {
chat.ServeWS(context)
} else {
context.JSON(200, extractor.FormatMessage("SafeTwitch backend running", true))
}
})
}