mirror of
https://github.com/huqi-pr/trending-in-one.git
synced 2024-11-17 13:58:28 +08:00
16 lines
415 B
TypeScript
16 lines
415 B
TypeScript
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";
|
|
|
|
export async function init() {
|
|
await zhihuVideo();
|
|
await zhihuQuestions();
|
|
await zhihuSearch();
|
|
await weiboSearch();
|
|
await toutiaoSearch();
|
|
}
|
|
|
|
init();
|