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

12 lines
162 B
Go
Raw Normal View History

2022-05-22 12:25:22 +03:00
package interwiki
var (
listOfEntries []*Wiki
entriesByName map[string]*Wiki
)
2022-05-22 12:25:22 +03:00
func init() {
listOfEntries = []*Wiki{}
entriesByName = map[string]*Wiki{}
2022-05-22 12:25:22 +03:00
}