From cf6aa7858ef4fa578e6f694bc75f3dc291b39858 Mon Sep 17 00:00:00 2001 From: Leonmmcoset Date: Mon, 1 Sep 2025 16:50:28 +0800 Subject: [PATCH] =?UTF-8?q?refactor(installer):=20=E6=B7=BB=E5=8A=A0rc?= =?UTF-8?q?=E6=A8=A1=E5=9D=97=E4=BE=9D=E8=B5=96=E4=BB=A5=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E6=9B=B4=E5=A4=9A=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在程序顶部添加rc模块的require语句,为后续实现更多功能做准备 --- installer.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/installer.lua b/installer.lua index b876255..2276b20 100644 --- a/installer.lua +++ b/installer.lua @@ -67,6 +67,7 @@ term.write("[Installer] Loading done.\n") -- 程序顶部名称栏 local term = require("term") local colors = require("colors") +local rc = require("rc") -- 保存当前颜色设置 local old_fg = term.getTextColor() local old_bg = term.getBackgroundColor()