17 lines
365 B
Go
17 lines
365 B
Go
package icecast_output
|
|
|
|
import (
|
|
"git.icedream.tech/icedream/uplink/plugins"
|
|
)
|
|
|
|
var Plugin = &plugins.Plugin{
|
|
Descriptor: plugins.PluginDescriptor{
|
|
Name: "Icecast Output",
|
|
Description: "Allows for listeners to connect to the stream via HTTP and receive respective metadata.",
|
|
},
|
|
|
|
Run: func() plugins.PluginInstance {
|
|
return &pluginInstance{}
|
|
},
|
|
}
|