19 lines
367 B
Go
19 lines
367 B
Go
|
package main
|
||
|
|
||
|
import "C"
|
||
|
|
||
|
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{}
|
||
|
},
|
||
|
}
|