fonchain-fiee/pkg/service/asChat/robot/task.go

16 lines
352 B
Go
Raw Normal View History

2025-06-14 06:46:01 +00:00
// Package robot -----------------------------
// @file : task.go
// @author : JJXu
// @contact : wavingbear@163.com
// @time : 2025/6/13 18:02
// -------------------------------------------
package robot
import "time"
type RobotTask struct {
RunTime time.Time
Run func(robotId int64, response string) error
Response string
}