14 lines
425 B
TypeScript
14 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
|
||
|
|
}
|