hippofish/packages/backend/src/server/api/mastodon/endpoints.ts

18 lines
595 B
TypeScript
Raw Normal View History

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 15:41:38 +02:00
import { apiStatusMastodon } from './endpoints/status.js';
2023-09-24 12:05:59 +02:00
export {
apiAccountMastodon,
apiAuthMastodon,
apiSearchMastodon,
apiNotifyMastodon,
2023-09-24 15:33:13 +02:00
apiFilterMastodon,
2023-09-24 15:41:38 +02:00
apiTimelineMastodon,
apiStatusMastodon
2023-09-24 12:05:59 +02:00
}