2 Star 7 Fork 11

王布衣/engine

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
rule.go 356 Bytes
一键复制 编辑 原始数据 按行查看 历史
王布衣 提交于 2023-10-14 10:36 . 新增规则接口
package rules
// RuleKind 规则类型
type RuleKind int
const (
RuleMiss RuleKind = 0 // 规则未命中
)
const (
RuleHit RuleKind = 1 << iota // 命中
RuleCancel // 撤回
RulePassed // 成功
RuleFailed // 失败
)
// Rule 规则接口
type Rule interface {
Kind()
Name()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/quant1x/engine.git
git@gitee.com:quant1x/engine.git
quant1x
engine
engine
v0.3.9

搜索帮助