mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* 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
9 lines
182 B
Go
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
|
|
}
|