task.gno

0.17 Kb ยท 7 lines
1package feed
2
3// Task is a unit of work that can be part of a `Feed` definition. Tasks
4// are executed by agents.
5type Task interface {
6	MarshalJSON() ([]byte, error)
7}