forked from External/grumble
Re-add SQLite import support, but make it a build-time option.
This commit is contained in:
parent
48efaf6645
commit
4d5b897d66
11 changed files with 265 additions and 79 deletions
|
|
@ -41,7 +41,8 @@ func NewChannel(id int, name string) (channel *Channel) {
|
|||
channel.clients = make(map[uint32]*Client)
|
||||
channel.children = make(map[int]*Channel)
|
||||
channel.ACL = []*ChannelACL{}
|
||||
channel.Groups = map[string]*Group{}
|
||||
channel.Groups = make(map[string]*Group)
|
||||
channel.Links = make(map[int]*Channel)
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue