// Package cfg contains the `cfg` CLI command package cfg import ( "edge-infra.dev/pkg/edge/edgeadmin/commands/cfg/updatemanifests" "edge-infra.dev/pkg/edge/edgecli" "edge-infra.dev/pkg/lib/cli/command" ) func NewCmd(cfg *edgecli.Config) *command.Command { return &command.Command{ ShortUsage: "edge cfg", ShortHelp: "Commands for working with K8s manifests", Commands: []*command.Command{ updatemanifests.NewCmd(cfg), }, } }