Skip to content

Instantly share code, notes, and snippets.

@antonkalik
Created May 19, 2025 07:24
Show Gist options
  • Save antonkalik/441c6e226816107fa49e640479689e48 to your computer and use it in GitHub Desktop.
Save antonkalik/441c6e226816107fa49e640479689e48 to your computer and use it in GitHub Desktop.
fiber go
package main
import (
"github.com/gofiber/fiber/v2"
)
func main() {
app := fiber.New()
app.Get("/ping", func(c *fiber.Ctx) error {
return c.SendString("pong")
})
app.Listen(":3000")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment