Search Apps Documentation Source Content File Folder Download Copy Actions Download

meta.gno

0.38 Kb · 15 lines
 1package boards2
 2
 3import "gno.land/p/gnoland/boards"
 4
 5// BoardMeta defines a type for board metadata.
 6type BoardMeta struct {
 7	// HiddenThreads contains hidden board threads.
 8	HiddenThreads boards.PostStorage
 9}
10
11// ThreadMeta defines a type for thread metadata.
12type ThreadMeta struct {
13	// AllReplies contains all existing thread comments and replies.
14	AllReplies boards.PostStorage
15}