2022-11-16 06:46:14 +00:00
|
|
|
// Copyright © 2022 Roberto Hidalgo <joao@un.rob.mx>
|
2022-12-31 06:14:08 +00:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2022-11-16 06:46:14 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2022-12-19 03:09:05 +00:00
|
|
|
"os"
|
|
|
|
|
|
|
|
"git.rob.mx/nidito/chinampa"
|
|
|
|
"git.rob.mx/nidito/chinampa/pkg/runtime"
|
2022-11-22 06:16:54 +00:00
|
|
|
_ "git.rob.mx/nidito/joao/cmd"
|
2022-12-20 05:49:37 +00:00
|
|
|
"git.rob.mx/nidito/joao/pkg/version"
|
2022-11-16 06:46:14 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
logrus.SetFormatter(&logrus.TextFormatter{
|
|
|
|
DisableLevelTruncation: true,
|
|
|
|
DisableTimestamp: true,
|
2022-11-22 06:16:54 +00:00
|
|
|
ForceColors: runtime.ColorEnabled(),
|
2022-11-16 06:46:14 +00:00
|
|
|
})
|
|
|
|
|
2022-12-19 03:09:05 +00:00
|
|
|
if runtime.DebugEnabled() {
|
|
|
|
logrus.SetLevel(logrus.DebugLevel)
|
|
|
|
logrus.Debug("Debugging enabled")
|
|
|
|
}
|
2022-11-22 06:16:54 +00:00
|
|
|
|
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)
|
2022-11-16 06:46:14 +00:00
|
|
|
}
|
|
|
|
}
|