fix: make the app compatiable with the tracker

This commit is contained in:
ngn 2024-03-19 21:19:26 +03:00
parent e5a611bc66
commit a88524273d

View File

@ -51,5 +51,8 @@ func main(){
})
log.Info("Starting MatterLinux Website on port 9878")
log.Fatal(app.Listen(":9878"))
err := app.Listen(":9878")
if err != nil {
log.Fatalf("Error starting server: %s", err)
}
}