edit broadcast.

This commit is contained in:
Miroslav Šedivý 2020-11-01 17:34:47 +01:00
parent 507fce7862
commit 7fb977faa4
4 changed files with 12 additions and 8 deletions

View file

@ -21,6 +21,7 @@ type CaptureManagerCtx struct {
shutdown chan bool
emmiter events.EventEmmiter
streaming bool
broadcasting bool
broadcast_url string
desktop types.DesktopManager
}
@ -32,6 +33,7 @@ func New(desktop types.DesktopManager, config *config.Capture) *CaptureManagerCt
emmiter: events.New(),
config: config,
streaming: false,
broadcasting: false,
broadcast_url: "",
desktop: desktop,
}