2022-12-08 13:05:19 -03:00

34 lines
781 B
Go

// Copyright (c) 2022 Gitpod GmbH. All rights reserved.
// Licensed under the GNU Affero General Public License (AGPL).
// See License.AGPL.txt in the project root for license information.
package cmd
import (
"context"
"os"
"github.com/gitpod-io/gitpod/common-go/log"
"github.com/spf13/cobra"
)
var (
// ServiceName is the name we use for tracing/logging
ServiceName = "usage"
// Version of this service - set during build
Version = ""
)
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: ServiceName,
Short: "Usage service & controller",
}
func Execute() {
if err := rootCmd.ExecuteContext(context.Background()); err != nil {
log.WithError(err).Error("Failed to execute command.")
os.Exit(1)
}
}