Files
mattermost/plugin/supervisor.go

9 lines
182 B
Go
Raw Normal View History

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
}