mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
11 lines
133 B
Go
11 lines
133 B
Go
|
package types
|
||
|
|
||
|
type BroadcastManager interface {
|
||
|
Start()
|
||
|
Stop()
|
||
|
IsActive() bool
|
||
|
Create(url string)
|
||
|
Destroy()
|
||
|
GetUrl() string
|
||
|
}
|