mirror of
https://github.com/m1k1o/neko.git
synced 2025-08-03 16:59:12 +02:00
remove broadcast Config
This commit is contained in:
parent
aa1a3ec413
commit
88c0337a16
4 changed files with 2 additions and 44 deletions
|
@ -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: "",
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue