trending-in-one/mod.ts

16 lines
415 B
TypeScript
Raw Normal View History

2020-11-29 13:03:19 +08:00
import { zhihuVideo } from "./zhihu-video.ts";
import { zhihuQuestions } from "./zhihu-questions.ts";
import { zhihuSearch } from "./zhihu-search.ts";
import { weiboSearch } from "./weibo-search.ts";
import { toutiaoSearch } from "./toutiao-search.ts";
2020-11-29 03:11:35 +08:00
2020-11-29 17:39:59 +08:00
export async function init() {
2020-11-29 17:44:19 +08:00
await zhihuVideo();
await zhihuQuestions();
await zhihuSearch();
await weiboSearch();
await toutiaoSearch();
2020-11-29 17:39:59 +08:00
}
2020-11-29 17:44:19 +08:00
init();