// Copyright (c) 2020 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"context"89"github.com/spf13/cobra"10)1112// usersBlockCmd represents the describe command13var usersVerifyCmd = &cobra.Command{14Use: "verify <userID> ... <userID>",15Short: "verifies a user",16Args: cobra.MinimumNArgs(1),17Run: func(cmd *cobra.Command, args []string) {18ctx, cancel := context.WithCancel(context.Background())19defer cancel()20verifyUser(ctx, args)21},22}2324func init() {25usersCmd.AddCommand(usersVerifyCmd)26}272829