Files
mattermost/plugin/supervisor.go
Chris f80d50adbd PLT-7407: Back-end plugin mechanism (#7177)
* begin backend plugin wip

* flesh out rpcplugin. everything done except for minor supervisor stubs

* done with basic plugin infrastructure

* simplify tests

* remove unused test lines
2017-08-16 17:23:38 -05:00

9 lines
182 B
Go

package plugin
// Supervisor provides the interface for an object that controls the execution of a plugin.
type Supervisor interface {
Start() error
Stop() error
Hooks() Hooks
}