17 lines
327 B
Go
17 lines
327 B
Go
package icecast_input
|
|
|
|
import (
|
|
"git.icedream.tech/icedream/uplink/plugins"
|
|
)
|
|
|
|
var Plugin = &plugins.Plugin{
|
|
Descriptor: plugins.PluginDescriptor{
|
|
Name: "Icecast Input",
|
|
Description: "Allows for Icecast clients to stream to the server.",
|
|
},
|
|
|
|
Run: func() plugins.PluginInstance {
|
|
return &pluginInstance{}
|
|
},
|
|
}
|