mirror of
https://github.com/mattermost/mattermost.git
synced 2026-04-15 22:12:19 -04:00
13 lines
442 B
Go
13 lines
442 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
//go:build enterprise || sourceavailable
|
|
|
|
package enterprise
|
|
|
|
import (
|
|
// Needed to ensure the init() method in the EE gets run
|
|
_ "github.com/mattermost/mattermost/server/v8/enterprise/metrics"
|
|
// Needed to ensure the init() method in the EE gets run
|
|
_ "github.com/mattermost/mattermost/server/v8/enterprise/elasticsearch"
|
|
)
|