2023-09-24 12:05:59 +02:00
|
|
|
import { apiAuthMastodon } from './endpoints/auth.js';
|
|
|
|
|
import { apiAccountMastodon } from './endpoints/account.js';
|
|
|
|
|
import { apiSearchMastodon } from './endpoints/search.js';
|
|
|
|
|
import { apiNotifyMastodon } from './endpoints/notifications.js';
|
|
|
|
|
import { apiFilterMastodon } from './endpoints/filter.js';
|
2023-09-24 15:33:13 +02:00
|
|
|
import { apiTimelineMastodon } from './endpoints/timeline.js';
|
2023-09-24 12:05:59 +02:00
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
apiAccountMastodon,
|
|
|
|
|
apiAuthMastodon,
|
|
|
|
|
apiSearchMastodon,
|
|
|
|
|
apiNotifyMastodon,
|
2023-09-24 15:33:13 +02:00
|
|
|
apiFilterMastodon,
|
|
|
|
|
apiTimelineMastodon
|
2023-09-24 12:05:59 +02:00
|
|
|
}
|