package main import "github.com/gofiber/fiber/v2" func main() { app := fiber.New() app.Get("/", func(ctx *fiber.Ctx) error { return ctx.SendString("Privacy6") }) app.Listen("localhost:4200") }