// Copyright (c) 2024 Gitpod GmbH. All rights reserved.1// Licensed under the GNU Affero General Public License (AGPL).2// See License.AGPL.txt in the project root for license information.34package cmd56import (7"fmt"89"github.com/gitpod-io/gitpod/installer/pkg/config"10"github.com/spf13/cobra"11)1213// mirrorRepoCmd represents the mirror list command14var mirrorRepoCmd = &cobra.Command{15Use: "repo",16Short: "Get original image repo for this installer",17RunE: func(cmd *cobra.Command, args []string) error {18fmt.Print(config.GitpodContainerRegistry)19return nil20},21}2223func init() {24mirrorCmd.AddCommand(mirrorRepoCmd)25}262728