From afe3ac7c255e8e7cc721499e18b369e0a0568d42 Mon Sep 17 00:00:00 2001 From: melladonna Date: Mon, 23 Dec 2024 19:20:12 +0800 Subject: [PATCH] Update route.js --- src/route.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/route.js b/src/route.js index c20df04..9eca5e1 100644 --- a/src/route.js +++ b/src/route.js @@ -1,13 +1,12 @@ import { Hono } from 'hono'; import bilibili_user_dynamic from './lib/bilibili/user/dynamic'; -import bilibili_user_video from './lib/bilibili/user/video'; import telegram_channel from './lib/telegram/channel'; import weibo_user from './lib/weibo/user'; import xiaohongshu_user from './lib/xiaohongshu/user'; const route = new Hono(); -let plugins = [bilibili_user_dynamic, bilibili_user_video, telegram_channel, weibo_user, xiaohongshu_user]; +let plugins = [bilibili_user_dynamic, telegram_channel, weibo_user, xiaohongshu_user]; for (let plugin of plugins) { plugin.setup(route);