feat(server): add fetch-rss api to reduce dependency of external apis

This commit is contained in:
syuilo 2022-07-02 21:26:33 +09:00
parent eb709508a4
commit 949dbb3918
6 changed files with 58 additions and 3 deletions

View file

@ -312,6 +312,7 @@ import * as ep___users_searchByUsernameAndHost from './endpoints/users/search-by
import * as ep___users_search from './endpoints/users/search.js';
import * as ep___users_show from './endpoints/users/show.js';
import * as ep___users_stats from './endpoints/users/stats.js';
import * as ep___fetchRss from './endpoints/fetch-rss.js';
const eps = [
['admin/meta', ep___admin_meta],
@ -626,6 +627,7 @@ const eps = [
['users/search', ep___users_search],
['users/show', ep___users_show],
['users/stats', ep___users_stats],
['fetch-rss', ep___fetchRss],
];
export interface IEndpointMeta {