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