github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/examples/gno.land/r/x/nir1218_evaluation_proposal/tally.gno (about)

     1  package evaluation
     2  
     3  import (
     4  	"gno.land/p/demo/avl"
     5  )
     6  
     7  type TallyResult struct {
     8  	results avl.Tree
     9  }
    10  
    11  type Tally interface {
    12  	Tally()
    13  }