Files
truecharts/clustertool/cmd/adv_scaleexport.go
T
2024-10-19 15:18:05 +02:00

19 lines
347 B
Go

package cmd
import (
"github.com/spf13/cobra"
"github.com/truecharts/public/clustertool/pkg/scale"
)
var scaleexport = &cobra.Command{
Use: "scaleexport",
Short: "Export SCALE Apps to file",
Run: func(cmd *cobra.Command, args []string) {
scale.ExportApps()
},
}
func init() {
adv.AddCommand(scaleexport)
}