uplink/plugins/icecast/input/plugin.go

17 lines
327 B
Go
Raw Normal View History

package icecast_input
2018-04-10 15:08:40 +00:00
2018-04-10 14:34:41 +00:00
import (
"git.icedream.tech/icedream/uplink/plugins"
)
2018-04-10 15:08:40 +00:00
var Plugin = &plugins.Plugin{
Descriptor: plugins.PluginDescriptor{
Name: "Icecast Input",
Description: "Allows for Icecast clients to stream to the server.",
},
2018-04-10 14:34:41 +00:00
2018-04-10 15:08:40 +00:00
Run: func() plugins.PluginInstance {
return &pluginInstance{}
},
2018-04-10 14:34:41 +00:00
}