14 lines
230 B
Go
14 lines
230 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var applyCmd = &cobra.Command{
|
|
Use: "apply",
|
|
Short: "Apply profiles to all installations",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
// TODO
|
|
return nil
|
|
},
|
|
}
|