mirror of https://github.com/ory/hydra
20 lines
333 B
Go
20 lines
333 B
Go
// Copyright © 2022 Ory Corp
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/ory/x/configx"
|
|
)
|
|
|
|
func NewMigrateCmd() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "migrate",
|
|
Short: "Various migration helpers",
|
|
}
|
|
configx.RegisterFlags(cmd.PersistentFlags())
|
|
return cmd
|
|
}
|