frontend/main.go
2024-06-14 14:46:42 +04:00

13 lines
244 B
Go

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,
})
}