mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
14 lines
414 B
Go
14 lines
414 B
Go
|
package data
|
||
|
|
||
|
// GetFederatedInboxMap is a mapping between account names and their outbox.
|
||
|
func GetFederatedInboxMap() map[string]string {
|
||
|
return map[string]string{
|
||
|
GetDefaultFederationUsername(): GetDefaultFederationUsername(),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// GetDefaultFederationUsername will return the username used for sending federation activities.
|
||
|
func GetDefaultFederationUsername() string {
|
||
|
return GetFederationUsername()
|
||
|
}
|