don't serve html anymore, just redirect to /cloud

This commit is contained in:
Lewis Crichton
2023-03-18 02:18:01 +00:00
parent 4b75484554
commit 2e512b4ae2
2 changed files with 1 additions and 12 deletions
+1 -1
View File
@@ -277,7 +277,7 @@ func main() {
// #endregion
app.Get("/", func(c *fiber.Ctx) error {
return c.SendFile("static/index.html")
return c.Redirect("https://vencord.vendicated.dev/cloud", 307)
})
app.Listen(HOST + ":" + PORT)