From a99fa9407267e717a0bb68b066d7698e29f9c5da Mon Sep 17 00:00:00 2001 From: Carl Kittelberger Date: Mon, 2 Jul 2018 11:40:21 +0200 Subject: [PATCH] Reenable Icecast input plugin in main app. --- main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 2e206e0..39d597a 100644 --- a/main.go +++ b/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()