mirror of
https://github.com/truecharts/charts.git
synced 2026-07-13 15:31:21 -03:00
19 lines
321 B
Go
19 lines
321 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"github.com/truecharts/private/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)
|
|
}
|