main.go 206 B

123456789101112131415
  1. package main
  2. import (
  3. "github.com/gofiber/fiber/v2"
  4. "log"
  5. "notabug.org/alimiracle/my-website-api/routes"
  6. )
  7. func main() {
  8. app := fiber.New()
  9. routes.SetupRoutes(app)
  10. log.Fatal(app.Listen(":3000"))
  11. }