Files
sesamy-cli/internal/cli/diff.go
Kevin Franklin Kim be5cacd815 docs: add gh docs
2026-05-27 08:52:58 +02:00

24 lines
376 B
Go

package cli
import (
"log/slog"
"github.com/foomo/sesamy-cli/internal/cli/diff"
"github.com/spf13/cobra"
)
// NewDiff represents the diff command
func NewDiff(l *slog.Logger) *cobra.Command {
cmd := &cobra.Command{
Use: "diff",
Short: "Print Google Tag Manager container status diff",
}
cmd.AddCommand(
diff.NewWeb(l),
diff.NewServer(l),
)
return cmd
}