summaryrefslogtreecommitdiffstats
path: root/services/configservice/configservice.go
blob: bb854d21fc3ea32402e2bbdfbbc7fda4d18da404 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package configservice

import (
	"github.com/mattermost/mattermost-server/model"
)

// An interface representing something that contains a Config, such as the app.App struct
type ConfigService interface {
	Config() *model.Config
	AddConfigListener(func(old, current *model.Config)) string
	RemoveConfigListener(string)
}