1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-10-30 19:56:16 +00:00
mycorrhiza/interwiki/map.go

15 lines
201 B
Go
Raw Normal View History

2022-05-22 09:25:22 +00:00
package interwiki
// Map is an interwiki map
type Map struct {
list []*Wiki
byName map[string]*Wiki
}
var theMap Map
func init() {
theMap.list = []*Wiki{}
theMap.byName = map[string]*Wiki{}
}