2020-12-15 00:38:19 +00: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 20:39:22 +00:00
|
|
|
var getCmd = &cobra.Command{Use: "get", Short: "get"}
|
2020-12-15 00:38:19 +00:00
|
|
|
|
|
|
|
//nolint: gochecknoinits
|
|
|
|
func init() {
|
|
|
|
rootCmd.AddCommand(getCmd)
|
|
|
|
}
|