blob: 31eac07100b4ecc2457701e68fbeb8b6f65ce99f (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package plugin
// All implementations should be safe for concurrent use.
type Hooks interface {
// Invoked when configuration changes may have been made
OnConfigurationChange()
}
|