forked from Cliffbreak/tsviewer
15 lines
394 B
Go
15 lines
394 B
Go
|
package channel
|
||
|
|
||
|
type Service interface {
|
||
|
Channel(id int) (*Channel, error)
|
||
|
Channels() ([]*Channel, error)
|
||
|
}
|
||
|
|
||
|
type Channel struct {
|
||
|
ID int `json:"id"`
|
||
|
Subchannels []Channel `json:"subchannel"`
|
||
|
Name string `json:"name"`
|
||
|
TotalClients int `json:"totalClients"`
|
||
|
NeededSubscribePower int `json:"neededSubscribePower"`
|
||
|
}
|