* Add metrics to MM server for total enabled user count and include installation ID from a new env var * diagnostics context Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
12 строки
295 B
Go
12 строки
295 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package interfaces
|
|
|
|
import "github.com/mattermost/mattermost-server/v5/model"
|
|
|
|
type ActiveUsersJobInterface interface {
|
|
MakeWorker() model.Worker
|
|
MakeScheduler() model.Scheduler
|
|
}
|