mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-12-13 18:38:24 +00:00
13 lines
425 B
TypeScript
13 lines
425 B
TypeScript
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';
|
|
|
|
export {
|
|
apiAccountMastodon,
|
|
apiAuthMastodon,
|
|
apiSearchMastodon,
|
|
apiNotifyMastodon,
|
|
apiFilterMastodon
|
|
}
|