auth.go 239 B

1234567891011
  1. package auth
  2. // Type represents a form of authentication.
  3. type Type string
  4. // The different auth types we support.
  5. const (
  6. // IndieAuth https://indieauth.spec.indieweb.org/.
  7. IndieAuth Type = "indieauth"
  8. Fediverse Type = "fediverse"
  9. )