summaryrefslogtreecommitdiffstats
path: root/plugin/supervisor.go
blob: f3e576e992b5e209b7242eed522b9f855a71e715 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

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
}