mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
16 lines
410 B
Go
16 lines
410 B
Go
package commands
|
|
|
|
import "github.com/urfave/cli/v2"
|
|
|
|
// AuthJWTCommands groups JWT-related auth helpers under photoprism auth jwt.
|
|
var AuthJWTCommands = &cli.Command{
|
|
Name: "jwt",
|
|
Usage: "JWT issuance and diagnostics",
|
|
Hidden: true, // Required for cluster-management only.
|
|
Subcommands: []*cli.Command{
|
|
AuthJWTIssueCommand,
|
|
AuthJWTInspectCommand,
|
|
AuthJWTKeysCommand,
|
|
AuthJWTStatusCommand,
|
|
},
|
|
}
|