From 1c910931e82713087c6910094997f484e88fd2f7 Mon Sep 17 00:00:00 2001 From: a158 Date: Sat, 17 Jan 2026 18:34:18 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=83=A8=E5=88=86=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- target/fwutils/develop/controll/template.lua | 5 ++--- target/tencent/qywx.lua | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/target/fwutils/develop/controll/template.lua b/target/fwutils/develop/controll/template.lua index 280deb2..ef2bddd 100644 --- a/target/fwutils/develop/controll/template.lua +++ b/target/fwutils/develop/controll/template.lua @@ -43,10 +43,9 @@ M.list = function() succ(d) end M.refresh = function() - local module_template = require("fwutils.template_engine") local conn = mysql.new(_G[fwutils_config.db.mysql_pool_name]):get() - module_template.update(conn) - succ() + develop_template.make_bytecode(conn) + succ({}) end M.exec = function() exec({ diff --git a/target/tencent/qywx.lua b/target/tencent/qywx.lua index 1a834d0..afbf790 100644 --- a/target/tencent/qywx.lua +++ b/target/tencent/qywx.lua @@ -1,6 +1,6 @@ -local http = require("fwutils.httpclient") +local http = require("httpclient") local codec = require("fastweb.codec") -local base64 = require("fwutils.base64") +local base64 = require("base64") local openssl = require("openssl") local M = {}