Initial commit

This commit is contained in:
2023-07-22 13:16:03 +02:00
commit 92ee82fc0e
7 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,17 @@
package main
import (
"log"
"github.com/gofiber/fiber/v2"
)
func main() {
app := fiber.New()
app.Get("/", func (c *fiber.Ctx) error {
return c.SendString("Hello, World!")
})
log.Fatal(app.Listen(":3000"))
}