Skip to content

Commit

Permalink
start cs funcs
Browse files Browse the repository at this point in the history
  • Loading branch information
leohhhn committed Sep 30, 2024
1 parent 3c21976 commit fa11b61
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion examples/gno.land/r/leon/cmts/cmts.gno
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,14 @@ func NewCommentSet() *CommentSet {
}
}

// NewCommentSetWithOwnable can be used to set the same ownable to multiple items
// NewCommentSetWithOwnable can be used to set the same ownable to make multiple sets
func NewCommentSetWithOwnable(o *ownable.Ownable) *CommentSet {
return &CommentSet{
owner: o,
set: avl.NewTree(),
}
}

func (cs *CommentSet) AddComment() {

}

0 comments on commit fa11b61

Please sign in to comment.