1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-14 06:10:26 +00:00
mycorrhiza/interwiki/map.go

12 lines
162 B
Go
Raw Normal View History

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