10 lines
133 B
Go
10 lines
133 B
Go
package types
|
|
|
|
type BroadcastManager interface {
|
|
Start()
|
|
Stop()
|
|
IsActive() bool
|
|
Create(url string)
|
|
Destroy()
|
|
GetUrl() string
|
|
}
|