| 1234567891011121314151617181920 | package composeimport (	"github.com/spf13/cobra")// Command returns the compose command with its child commandsfunc Command() *cobra.Command {	command := &cobra.Command{		Short: "Docker Compose",		Use:   "compose",	}	command.AddCommand(		upCommand(),		downCommand(),	)	return command}
 |