2020-12-14 18:38:19 -06:00
|
|
|
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
//nolint: gochecknoglobals
|
2020-12-17 14:39:22 -06:00
|
|
|
var getCmd = &cobra.Command{Use: "get", Short: "get"}
|
2020-12-14 18:38:19 -06:00
|
|
|
|
|
|
|
//nolint: gochecknoinits
|
|
|
|
func init() {
|
|
|
|
rootCmd.AddCommand(getCmd)
|
|
|
|
}
|