Files
truecharts/clustertool/cmd/scale_export.go
T
2024-10-20 11:37:41 +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: "export",
Short: "Export SCALE Apps to file",
Run: func(cmd *cobra.Command, args []string) {
scale.ExportApps()
},
}
func init() {
scaleCmd.AddCommand(scaleexport)
}