uplink/plugins/icecast/input/plugin.go

19 lines
330 B
Go
Raw Normal View History

2018-04-10 14:34:41 +00:00
package main
2018-04-10 15:08:40 +00:00
import "C"
2018-04-10 14:34:41 +00:00
import (
"git.icedream.tech/icedream/uplink/plugins"
)
2018-04-10 15:08:40 +00:00
var Plugin = &plugins.Plugin{
Descriptor: plugins.PluginDescriptor{
Name: "Icecast Input",
Description: "Allows for Icecast clients to stream to the server.",
},
2018-04-10 14:34:41 +00:00
2018-04-10 15:08:40 +00:00
Run: func() plugins.PluginInstance {
return &pluginInstance{}
},
2018-04-10 14:34:41 +00:00
}