blob: 1253533d11db22248658c91bcfb07ab4aa4de869 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package model
// PluginEventData used to notify peers about plugin changes.
type PluginEventData struct {
Id string `json:"id"`
}
|