// Copyright (c) 2022 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 compute56import (7"github.com/spf13/cobra"8)910func NewCommand() *cobra.Command {11cmd := &cobra.Command{12Use: "compute",13Short: "gcloud compute wrapper",14}1516cmd.AddCommand(newInstanceTemplatesCommand())1718return cmd19}2021func newInstanceTemplatesCommand() *cobra.Command {22cmd := &cobra.Command{23Use: "instance-templates",24Short: "instance-templates wrapper",25}2627cmd.AddCommand(newInstanceTemplatesCreateCommand())2829return cmd30}313233