This repository has been archived on 2024-07-05. You can view files and clone it, but cannot push or open issues or pull requests.
PrivacyHex/app.go
2023-10-13 14:44:10 +04:00

13 lines
203 B
Go

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