github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/examples/gno.land/p/demo/gnorkle/feed/value.gno (about) 1 package feed 2 3 import "time" 4 5 // Value represents a value published by a feed. The `Time` is when the value was published. 6 type Value struct { 7 String string 8 Time time.Time 9 }