You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
414 B
13 lines
414 B
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() |
|
}
|
|
|