summaryrefslogtreecommitdiffstats
path: root/app/plugin/plugin.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/plugin/plugin.go')
-rw-r--r--app/plugin/plugin.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/plugin/plugin.go b/app/plugin/plugin.go
new file mode 100644
index 000000000..b4fec1be8
--- /dev/null
+++ b/app/plugin/plugin.go
@@ -0,0 +1,9 @@
+// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package plugin
+
+type Plugin interface {
+ Initialize(API)
+ Hooks
+}