help.go

 1package common
 2
 3type BubbleHelper interface {
 4	Help() []HelpEntry
 5}
 6
 7type HelpEntry struct {
 8	Key   string
 9	Value string
10}