1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-02-07 14:40:16 +00:00

12 lines
162 B
Go

package interwiki
var (
listOfEntries []*Wiki
entriesByName map[string]*Wiki
)
func init() {
listOfEntries = []*Wiki{}
entriesByName = map[string]*Wiki{}
}