fedicrawl/application/src/Fediverse/Providers/Friendica/index.ts

14 wiersze
340 B
TypeScript
Czysty Zwykły widok Historia

2022-05-29 13:55:53 +00:00
import { Provider } from '../Provider'
import MastodonProvider from '../Mastodon'
/**
* Pleroma implements Mastodon's api
*/
const FriendicaProvider: Provider = {
getKey: () => 'friendica',
getNodeProviders: MastodonProvider.getNodeProviders,
getFeedProviders: MastodonProvider.getFeedProviders
}
export default FriendicaProvider