pcmt/main.go

24 lines
369 B
Go
Raw Permalink Normal View History

2023-05-20 20:15:57 +02:00
// Copyright 2023 wanderer <a_mirre at utb dot cz>
// SPDX-License-Identifier: AGPL-3.0-only
package main
2023-04-19 05:30:52 +02:00
import (
"os"
2023-08-02 15:14:44 +02:00
"git.dotya.ml/mirre-mt/pcmt/slogging"
2023-04-19 05:30:52 +02:00
)
func main() {
err := run()
if err != nil {
l := slogging.Logger()
if l == nil {
l = slogging.Init(true)
}
l.Error("unrecoverable failure, stopping the app", "error", err)
2023-04-19 05:30:52 +02:00
os.Exit(1)
}
}