0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch-backend.git synced 2024-12-22 13:13:00 -05:00
safetwitch-backend/main.go
2023-05-22 10:27:44 -04:00

49 lines
781 B
Go

package main
import (
"fmt"
"os"
"safetwitch-backend/routes"
"strings"
"github.com/gin-gonic/gin"
)
func ErrorHandler(c *gin.Context) {
c.Next()
err := c.Errors.Last()
if err != nil {
c.JSON(500, gin.H{
"status": "error",
"message": err.Error(),
})
}
fmt.Println(err)
}
func notFoundHandler(context *gin.Context) {
message := []string{"path", context.Request.URL.Path, "was not found."}
context.JSON(404, gin.H{
"status": "error",
"message": strings.Join(message, " "),
})
}
func main() {
// check for env
env := os.Getenv("URL")
if env == "" {
fmt.Println("ENV Variable 'URL' is not present")
os.Exit(10)
}
router := gin.Default()
router.Use(ErrorHandler)
routes.SetRoutes(router)
router.NoRoute(notFoundHandler)
router.Run()
}