mirror of
https://github.com/truecharts/charts.git
synced 2026-07-08 15:21:21 -03:00
15 lines
193 B
Go
15 lines
193 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var fluxBootstrap = &cobra.Command{
|
|
Use: "fluxBootstrap",
|
|
Short: "bootstrapFluxCD",
|
|
}
|
|
|
|
func init() {
|
|
RootCmd.AddCommand(fluxBootstrap)
|
|
}
|