package cmd
import (
"github.com/spf13/cobra"
)
var idpLoginOpts struct {
Scope string
}
var idpLoginCmd = &cobra.Command{
Use: "login",
Short: "Login to a service for which trust has been established",
}
func init() {
idpCmd.AddCommand(idpLoginCmd)
idpLoginCmd.PersistentFlags().StringVar(&idpLoginOpts.Scope, "scope", "", "scopes string of the ID token")
}