Archived
2
0

remove broadcast Config

This commit is contained in:
m1k1o
2020-09-27 01:34:33 +02:00
parent aa1a3ec413
commit 88c0337a16
4 changed files with 2 additions and 44 deletions

View File

@ -12,16 +12,14 @@ type BroadcastManager struct {
logger zerolog.Logger
pipeline *gst.Pipeline
remote *config.Remote
config *config.Broadcast
enabled bool
url string
}
func New(remote *config.Remote, config *config.Broadcast) *BroadcastManager {
func New(remote *config.Remote) *BroadcastManager {
return &BroadcastManager{
logger: log.With().Str("module", "remote").Logger(),
remote: remote,
config: config,
enabled: false,
url: "",
}