mirror of
https://github.com/photoprism/photoprism.git
synced 2025-09-28 05:33:27 +08:00
13 lines
336 B
Go
13 lines
336 B
Go
package commands
|
|
|
|
import "github.com/urfave/cli/v2"
|
|
|
|
// MigrateCommand configures the command name, flags, and action.
|
|
var MigrateCommand = &cli.Command{
|
|
Name: "migrate",
|
|
Usage: MigrationsRunCommand.Usage,
|
|
ArgsUsage: MigrationsRunCommand.ArgsUsage,
|
|
Flags: MigrationsRunCommand.Flags,
|
|
Action: migrationsRunAction,
|
|
}
|