ficsit-cli-flake/cmd/apply.go
2022-06-08 23:56:32 +03:00

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
},
}