15 lines
274 B
Go
15 lines
274 B
Go
|
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{}
|
||
|
}
|