mirror of https://github.com/ory/kratos
26 lines
465 B
Go
26 lines
465 B
Go
// Copyright © 2023 Ory Corp
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package cleanup
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/ory/x/configx"
|
|
)
|
|
|
|
func NewCleanupCmd() *cobra.Command {
|
|
c := &cobra.Command{
|
|
Use: "cleanup",
|
|
Short: "Various cleanup helpers",
|
|
}
|
|
configx.RegisterFlags(c.PersistentFlags())
|
|
return c
|
|
}
|
|
|
|
func RegisterCommandRecursive(parent *cobra.Command) {
|
|
c := NewCleanupCmd()
|
|
parent.AddCommand(c)
|
|
c.AddCommand(NewCleanupSQLCmd())
|
|
}
|