joao/main.go

37 lines
897 B
Go
Raw Normal View History

// Copyright © 2022 Roberto Hidalgo <joao@un.rob.mx>
2022-12-31 06:14:08 +00:00
// SPDX-License-Identifier: Apache-2.0
package main
import (
2022-12-19 03:09:05 +00:00
"os"
"git.rob.mx/nidito/chinampa"
"git.rob.mx/nidito/chinampa/pkg/runtime"
_ "git.rob.mx/nidito/joao/cmd"
2022-12-20 05:49:37 +00:00
"git.rob.mx/nidito/joao/pkg/version"
"github.com/sirupsen/logrus"
)
func main() {
logrus.SetFormatter(&logrus.TextFormatter{
DisableLevelTruncation: true,
DisableTimestamp: true,
ForceColors: runtime.ColorEnabled(),
})
2022-12-19 03:09:05 +00:00
if runtime.DebugEnabled() {
logrus.SetLevel(logrus.DebugLevel)
logrus.Debug("Debugging enabled")
}
2022-12-31 06:14:08 +00:00
if err := chinampa.Execute(chinampa.Config{
Name: "joao",
Summary: "Helps organize config for roberto",
Description: `﹅joao﹅ makes yaml, json, 1password and vault play along nicely.`,
Version: version.Version,
}); err != nil {
2022-12-20 05:49:37 +00:00
logrus.Errorf("total failure: %s", err)
2022-12-19 03:09:05 +00:00
os.Exit(2)
}
}