mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
11 lines
253 B
Go
11 lines
253 B
Go
package models
|
|
|
|
// Type represents a form of authentication.
|
|
type AuthType string
|
|
|
|
// The different auth types we support.
|
|
const (
|
|
// IndieAuth https://indieauth.spec.indieweb.org/.
|
|
IndieAuth AuthType = "indieauth"
|
|
Fediverse AuthType = "fediverse"
|
|
)
|