mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-17 22:30:55 +08:00
17 lines
310 B
Go
17 lines
310 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// VisionCommands configures the computer vision subcommands.
|
|
var VisionCommands = &cli.Command{
|
|
Name: "vision",
|
|
Usage: "Computer vision subcommands",
|
|
Subcommands: []*cli.Command{
|
|
VisionListCommand,
|
|
VisionRunCommand,
|
|
VisionSaveCommand,
|
|
},
|
|
}
|