airobot/lib/action.go
2022-12-12 08:30:21 +08:00

17 lines
186 B
Go

package lib
type IAction interface {
ShowInfo() CallerInfo
}
type Action struct {
// scene *scene
Key string
Desc string
}
func NewAction() *Action {
a := &Action{}
return a
}