import "github.com/ory/hydra/cmd/cli"
error.go handler.go handler_client.go handler_helper.go handler_introspection.go handler_jwk.go handler_migrate.go handler_token.go
type ClientHandler struct{}func (h *ClientHandler) CreateClient(cmd *cobra.Command, args []string)
func (h *ClientHandler) DeleteClient(cmd *cobra.Command, args []string)
func (h *ClientHandler) GetClient(cmd *cobra.Command, args []string)
func (h *ClientHandler) ImportClients(cmd *cobra.Command, args []string)
func (h *ClientHandler) ListClients(cmd *cobra.Command, args []string)
func (h *ClientHandler) UpdateClient(cmd *cobra.Command, args []string)
type Handler struct {
Clients *ClientHandler
Keys *JWKHandler
Introspection *IntrospectionHandler
Token *TokenHandler
Migration *MigrateHandler
}type IntrospectionHandler struct{}func (h *IntrospectionHandler) Introspect(cmd *cobra.Command, args []string)
type JWKHandler struct{}func (h *JWKHandler) CreateKeys(cmd *cobra.Command, args []string)
func (h *JWKHandler) DeleteKeys(cmd *cobra.Command, args []string)
func (h *JWKHandler) GetKeys(cmd *cobra.Command, args []string)
func (h *JWKHandler) ImportKeys(cmd *cobra.Command, args []string)
type MigrateHandler struct{}func (h *MigrateHandler) MigrateSQL(cmd *cobra.Command, args []string)
type TokenHandler struct{}func (h *TokenHandler) DeleteToken(cmd *cobra.Command, args []string)
func (h *TokenHandler) FlushTokens(cmd *cobra.Command, args []string)
func (h *TokenHandler) RevokeToken(cmd *cobra.Command, args []string)
Package cli imports 34 packages (graph) and is imported by 19 packages. Updated 2020-09-24. Refresh now. Tools for package owners.