Reenable Icecast input plugin in main app.

master
Icedream 2018-07-02 11:40:21 +02:00
parent 331286f9d0
commit a99fa94072
Signed by: icedream
GPG Key ID: 1573F6D8EFE4D0CF
1 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import (
"log" "log"
"git.icedream.tech/icedream/uplink/app" "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/icecast/output"
"git.icedream.tech/icedream/uplink/plugins/test/sine" "git.icedream.tech/icedream/uplink/plugins/test/sine"
) )
@ -16,7 +17,7 @@ func main() {
func run() (err error) { func run() (err error) {
backend := app.New() backend := app.New()
// backend.UsePlugin(icecast_input.Plugin) backend.UsePlugin(icecast_input.Plugin)
backend.UsePlugin(icecast_output.Plugin) backend.UsePlugin(icecast_output.Plugin)
backend.UsePlugin(sine.Plugin) backend.UsePlugin(sine.Plugin)
backend.Init() backend.Init()