Skip to content

Instantly share code, notes, and snippets.

@antonkalik
Created May 19, 2025 07:23
Show Gist options
  • Save antonkalik/ae0a8055df21f48aa933a852094ef37b to your computer and use it in GitHub Desktop.
Save antonkalik/ae0a8055df21f48aa933a852094ef37b to your computer and use it in GitHub Desktop.
Fiber for go lang
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