1
0
mirror of https://github.com/glanceapp/glance.git synced 2025-07-09 11:06:58 +02:00

Adds reporting serve errors

This commit is contained in:
Brian Petersen
2024-05-17 10:11:00 -06:00
parent 7743664527
commit 6134f1c812

@ -36,7 +36,7 @@ func Main() int {
return 1 return 1
} }
if app.Serve() != nil { if err := app.Serve(); err != nil {
fmt.Printf("http server error: %v\n", err) fmt.Printf("http server error: %v\n", err)
return 1 return 1
} }