Files
stfs/cmd/drive_root.go
2021-12-19 18:29:33 +01:00

19 lines
263 B
Go

package cmd
import (
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
var driveCmd = &cobra.Command{
Use: "drive",
Aliases: []string{"dri", "d"},
Short: "Manage tape drives",
}
func init() {
viper.AutomaticEnv()
rootCmd.AddCommand(driveCmd)
}