frontend/main.go

14 lines
244 B
Go
Raw Normal View History

2024-06-14 13:46:42 +03:00
package main
import "github.com/gofiber/fiber/v3"
func main() {
app := fiber.New()
app.Get("/", func(c fiber.Ctx) error {
return c.SendString("dc09piped")
})
app.Listen("127.0.0.1:4800", fiber.ListenConfig{
EnablePrefork: true,
})
}