Manuel Alejandro de Brito Fontes 2b6a56bc40 Update go imports
2021-03-02 06:37:49 -03:00

39 lines
935 B
Go

// Copyright (c) 2020 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 (
"fmt"
"os"
"github.com/spf13/cobra"
"github.com/gitpod-io/gitpod/common-go/log"
)
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "supervisor",
Short: "Workspace container init process",
}
var (
// ServiceName is the name we use for tracing/logging
ServiceName = "supervisor"
// Version of this service - set during build
Version = ""
)
// Execute adds all child commands to the root command and sets flags appropriately.
// This is called by main.main(). It only needs to happen once to the rootCmd.
func Execute() {
log.Init(ServiceName, Version, false, true)
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}