10 lines
109 B
Go
10 lines
109 B
Go
package main
|
|
|
|
type Channel struct {
|
|
Entity
|
|
|
|
clients map[string]int
|
|
|
|
topic string
|
|
topictime int64
|
|
}
|