calendrier/main.go
2024-02-17 13:25:03 +01:00

16 lines
215 B
Go

package main
import (
"git.gnous.eu/Rick/calendrier/routes"
"github.com/gofiber/fiber/v2"
)
func main() {
app := fiber.New()
routes.SetupApi(app)
err := app.Listen(":8080")
if err != nil {
panic(err)
}
}