|
package main
|
|
|
|
import (
|
|
"git.icedream.tech/icedream/uplink/plugins"
|
|
)
|
|
|
|
var Descriptor = plugins.PluginDescriptor{
|
|
Name: "Icecast Input",
|
|
Description: "Allows for Icecast clients to stream to the server.",
|
|
}
|
|
|
|
func Run() *pluginInstance {
|
|
return &pluginInstance{}
|
|
}
|