mirror of
https://github.com/photoprism/photoprism.git
synced 2025-09-26 21:01:58 +08:00
17 lines
410 B
Go
17 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,
|
|
},
|
|
}
|