package api import ( "github.com/gofiber/fiber/v2" "os" ) func GetApiRestart(c *fiber.Ctx) error { os.Exit(0) return c.Redirect("/") }