mirror of
https://github.com/foomo/sesamy-cli.git
synced 2025-10-16 12:35:36 +00:00
21 lines
389 B
Go
21 lines
389 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/foomo/sesamy-cli/cmd/provision"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// NewProvision represents the provision command
|
|
func NewProvision(root *cobra.Command) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "provision",
|
|
Short: "Provision Google Tag Manager containers",
|
|
}
|
|
|
|
provision.NewServer(cmd)
|
|
provision.NewWeb(cmd)
|
|
root.AddCommand(cmd)
|
|
|
|
return cmd
|
|
}
|