Files
owncast/models/auth.go
2024-06-24 22:34:00 -07:00

12 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"
)