changed port to 5080

This commit is contained in:
Cipher Vance 2025-09-19 21:00:56 -05:00
parent 9f471905b5
commit 4036a6fc49

View file

@ -70,7 +70,7 @@ func main() {
// Start server
port := os.Getenv("PORT")
if port == "" {
port = "8080"
port = "5080"
}
r.Run(":" + port)
}