neko/internal/types/broadcast.go

11 lines
133 B
Go
Raw Normal View History

package types
type BroadcastManager interface {
Start()
Stop()
IsActive() bool
Create(url string)
Destroy()
GetUrl() string
}