calendrier/main.go

16 lines
215 B
Go
Raw Permalink Normal View History

2024-02-17 12:25:03 +00:00
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)
}
}