uplink/plugins/interfaces.go

21 lines
311 B
Go
Raw Normal View History

2018-04-10 15:08:40 +00:00
package plugins
import (
"git.icedream.tech/icedream/uplink/app/servers/http"
)
type PluginRunner func() PluginInstance
type PluginInstance interface {
}
type ServerPlugin interface {
PluginInstance
SetServer(*httpserver.Server)
}
type ChannelPlugin interface {
PluginInstance
SetChannel(id string)
}