9 lines
139 B
Go
9 lines
139 B
Go
|
package authn
|
||
|
|
||
|
// API client types.
|
||
|
const (
|
||
|
ClientConfidential = "confidential"
|
||
|
ClientWebDAV = "webdav"
|
||
|
ClientUnknown = ""
|
||
|
)
|