pcmt/main.go
leo aadb409606
All checks were successful
continuous-integration/drone/push Build is passing
go: fully switch to slogging
2023-04-19 05:30:52 +02:00

18 lines
228 B
Go

package main
import (
"os"
"golang.org/x/exp/slog"
)
func main() {
err := run()
if err != nil {
l := slog.New(slog.NewJSONHandler(os.Stderr))
// log.Fatalln(err)
l.Error("error running app:", err)
os.Exit(1)
}
}