gosuki/internal/firefox.go

15 lines
426 B
Go
Raw Normal View History

// This are private sahred functions the internal package allows to test the
// methods without exporting them outside the packge
package internal
// adds a new tagNode if it is not existing in the tagMap
// returns true if tag added or false if already existing
// returns the created tagNode
func (bw *main.FFBrowser) AddTagNode(tagId sqlid, tagName string) (bool, *tree.Node) {
// node, exists :=
return false, nil
}