mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
9 lines
139 B
Go
9 lines
139 B
Go
package authn
|
|
|
|
// API client types.
|
|
const (
|
|
ClientConfidential = "confidential"
|
|
ClientPublic = "public"
|
|
ClientUnknown = ""
|
|
)
|