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()