anonircd/channel.go

11 lines
109 B
Go
Raw Normal View History

2016-09-02 05:54:54 +00:00
package main
type Channel struct {
Entity
2016-09-02 05:54:54 +00:00
clients map[string]int
topic string
topictime int64
}