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