use go instead

This commit is contained in:
Tommy Parnell
2022-06-15 15:50:02 -04:00
parent d8ec49d3ae
commit ab2c4b41c7
8 changed files with 57 additions and 1047 deletions

17
server.go Normal file
View File

@@ -0,0 +1,17 @@
package main
import (
"os"
"github.com/gofiber/fiber/v2"
)
func main() {
app := fiber.New()
app.Get("/*", func(c *fiber.Ctx) error {
return c.Redirect("https://calendly.com/terribledev", 301)
})
app.Listen(":" + os.Getenv("PORT"))
}