fonchain-fiee/pkg/service/asChat/intreface.go

14 lines
336 B
Go
Raw Normal View History

2025-06-14 06:46:01 +00:00
// Package autoReply -----------------------------
// @file : intreface.go
// @author : JJXu
// @contact : wavingbear@163.com
// @time : 2025/6/13 16:15
// -------------------------------------------
package asChat
type IReplyRuler interface {
Name() string //规则名称
Check()
RunScript() string //运行脚本
}