github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/examples/gno.land/p/demo/gnorkle/feed/task.gno (about)

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