mirror of https://github.com/fluffle/goirc
10 lines
131 B
Go
10 lines
131 B
Go
|
package server
|
||
|
|
||
|
type Network struct {
|
||
|
nodes map[string]*Node
|
||
|
chans map[string]*Channel
|
||
|
nicks map[string]*Nick
|
||
|
tree *NetMap
|
||
|
}
|
||
|
|