update inventory listener
All checks were successful
Build and Publish / BuildAndDeployAmd64 (push) Successful in 34s
Build and Publish / BuildAndDeployArm64 (push) Successful in 3m31s

This commit is contained in:
matst80
2025-11-27 16:01:04 +01:00
parent 65dc8edf48
commit db61413988

View File

@@ -263,7 +263,12 @@ func main() {
}
})
go listener.Start()
go func() {
err := listener.Start()
if err != nil {
log.Fatalf("Unable to start inventory listener: %v", err)
}
}()
log.Print("Server started at port 8080")