airshipctl/cmd/bootstrap/bootstrap.go
Ian Howell 9212e67c23 Remove unused constant
Change-Id: I4e8eff5829fb525dd91162213a53bd318ee594c0
2019-06-25 15:34:40 -05:00

24 lines
530 B
Go

package bootstrap
import (
"fmt"
"github.com/spf13/cobra"
"github.com/ian-howell/airshipctl/pkg/environment"
)
// NewBootstrapCommand creates a new command for bootstrapping airshipctl
func NewBootstrapCommand(rootSettings *environment.AirshipCTLSettings) *cobra.Command {
bootstrapRootCmd := &cobra.Command{
Use: "bootstrap",
Short: "bootstraps airshipctl",
Run: func(cmd *cobra.Command, args []string) {
out := cmd.OutOrStdout()
fmt.Fprintf(out, "Under construction\n")
},
}
return bootstrapRootCmd
}