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

package plugin

type Plugin interface {
	Initialize(API)
	Hooks
}