11 lines
144 B
Go
11 lines
144 B
Go
|
package installation
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
var Cmd = &cobra.Command{
|
||
|
Use: "installation",
|
||
|
Short: "Manage installations",
|
||
|
}
|