inits/pkg/cmd/files/files.go
2024-01-20 14:20:51 +01:00

41 lines
614 B
Go

package files
import (
"log"
"github.com/spf13/cobra"
pconfig "novit.tech/direktil/pkg/config"
)
var (
configPath string
config *pconfig.Config
)
func Command() (cmd *cobra.Command) {
cmd = &cobra.Command{
Use: "files",
Args: cobra.NoArgs,
PersistentPreRun: loadConfig,
}
cmd.PersistentFlags().StringVar(&configPath, "config", "/boot/config.yaml", "path to the boot config")
cmd.AddCommand(
listCommand(),
)
return
}
func loadConfig(_ *cobra.Command, _ []string) {
c, err := pconfig.Load(configPath)
if err != nil {
log.Fatal("failed to load config: ", err)
}
config = c
}