value.gno

0.17 Kb ยท 9 lines
1package feed
2
3import "time"
4
5// Value represents a value published by a feed. The `Time` is when the value was published.
6type Value struct {
7	String string
8	Time   time.Time
9}