mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-08-01 02:11:15 -04:00
25 lines
733 B
Go
25 lines
733 B
Go
package clihelper
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/opencloud-eu/opencloud/pkg/version"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// DefaultApp is a wrapper for DefaultApp that adds Cobra specific settings
|
|
func DefaultApp(app *cobra.Command) *cobra.Command {
|
|
// TODO: when migration is done this has to become DefaultApp
|
|
// version info
|
|
app.Version = fmt.Sprintf("%s (%s <%s>) (%s)", version.String, "OpenCloud GmbH", "support@opencloud.eu", version.Compiled())
|
|
|
|
// a failing RunE is a runtime error, not a usage error: printing it here
|
|
// would put unstructured text next to the JSON log records, and the usage
|
|
// block on top of it is noise. main() reports what reaches it.
|
|
app.SilenceErrors = true
|
|
app.SilenceUsage = true
|
|
|
|
return app
|
|
}
|