diff --git a/index.js b/index.js index 24049c0..c10bffe 100644 --- a/index.js +++ b/index.js @@ -36,7 +36,7 @@ if (DEBUG_MODE) { /** * 引入模块 */ -const get_hotband = require('./src/get_hotband'); +const get_weibo_hotband = require('./src/get_weibo_hotband'); const execute_command = require('./src/execute_command'); @@ -51,7 +51,7 @@ console.log("Start running ..."); */ async function start() { // 爬取热搜数据 - await get_hotband.main(); + await get_weibo_hotband.main(); // 调试模式下 if (DEBUG_MODE) { diff --git a/src/get_hotband.js b/src/get_weibo_hotband.js similarity index 100% rename from src/get_hotband.js rename to src/get_weibo_hotband.js