mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2026-09-01 15:32:55 +08:00
98f8bd5ce2
#12 #IAUI3L
16 lines
271 B
Go
16 lines
271 B
Go
package globalobj
|
|
|
|
import (
|
|
"SamWaf/wafenginecore"
|
|
"github.com/go-co-op/gocron"
|
|
)
|
|
|
|
var (
|
|
/***
|
|
本地对象映射关系
|
|
*/
|
|
GWAF_RUNTIME_OBJ_WAF_ENGINE *wafenginecore.WafEngine //当前引擎对象
|
|
GWAF_RUNTIME_OBJ_WAF_CRON *gocron.Scheduler //定时器
|
|
|
|
)
|