* 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>
22 строки
1.0 KiB
Go
22 строки
1.0 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package imports
|
|
|
|
import (
|
|
// This is a placeholder so this package can be imported in Team Edition when it will be otherwise empty.
|
|
_ "github.com/mattermost/mattermost-server/v5/migrations"
|
|
|
|
// This is a placeholder so this package can be imported in Team Edition when it will be otherwise empty.
|
|
_ "github.com/mattermost/mattermost-server/v5/plugin/scheduler"
|
|
|
|
// This is a placeholder so this package can be imported in Team Edition when it will be otherwise empty.
|
|
_ "github.com/mattermost/mattermost-server/v5/services/searchengine/bleveengine/indexer"
|
|
|
|
// This is a placeholder so this package can be imported in Team Edition when it will be otherwise empty.
|
|
_ "github.com/mattermost/mattermost-server/v5/jobs/expirynotify"
|
|
|
|
// This is a placeholder so this package can be imported in Team Edition when it will be otherwise empty.
|
|
_ "github.com/mattermost/mattermost-server/v5/jobs/active_users"
|
|
)
|