Reenable Icecast input plugin in main app.
parent
331286f9d0
commit
a99fa94072
3
main.go
3
main.go
|
@ -4,6 +4,7 @@ import (
|
|||
"log"
|
||||
|
||||
"git.icedream.tech/icedream/uplink/app"
|
||||
"git.icedream.tech/icedream/uplink/plugins/icecast/input"
|
||||
"git.icedream.tech/icedream/uplink/plugins/icecast/output"
|
||||
"git.icedream.tech/icedream/uplink/plugins/test/sine"
|
||||
)
|
||||
|
@ -16,7 +17,7 @@ func main() {
|
|||
|
||||
func run() (err error) {
|
||||
backend := app.New()
|
||||
// backend.UsePlugin(icecast_input.Plugin)
|
||||
backend.UsePlugin(icecast_input.Plugin)
|
||||
backend.UsePlugin(icecast_output.Plugin)
|
||||
backend.UsePlugin(sine.Plugin)
|
||||
backend.Init()
|
||||
|
|
Loading…
Reference in New Issue