From a76c39b030dfeba6d90feaca43c01dc61474609b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A8=8B=E5=BA=8F=E5=91=98=E5=B0=8F=E5=A2=A8?= <2291200076@qq.com> Date: Thu, 28 Jul 2022 21:25:58 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=8F=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.js | 4 ++-- src/{get_hotband.js => get_weibo_hotband.js} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename src/{get_hotband.js => get_weibo_hotband.js} (100%) 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