Files
amane-tanikaze-dcbot/cmd/migrates/unlock.go

12 lines
231 B
Go

package migrates
import "github.com/spf13/cobra"
var unlockCmd = &cobra.Command{
Use: "unlock",
Short: "Unlock migrations",
RunE: func(cmd *cobra.Command, args []string) error {
return migrator.Unlock(cmd.Context())
},
}