1
0

add: timeline endpoints tio masto api

This commit is contained in:
Mar0xy
2023-09-24 15:33:13 +02:00
parent 846f2d3877
commit f1fc1ba4c7
3 changed files with 278 additions and 2 deletions
@@ -3,11 +3,13 @@ import { apiAccountMastodon } from './endpoints/account.js';
import { apiSearchMastodon } from './endpoints/search.js';
import { apiNotifyMastodon } from './endpoints/notifications.js';
import { apiFilterMastodon } from './endpoints/filter.js';
import { apiTimelineMastodon } from './endpoints/timeline.js';
export {
apiAccountMastodon,
apiAuthMastodon,
apiSearchMastodon,
apiNotifyMastodon,
apiFilterMastodon
apiFilterMastodon,
apiTimelineMastodon
}