Revert "Remove unnecessary blank imports (#23283)" (#23302)

This reverts commit 76ad948b80.
Этот коммит содержится в:
Jesse Hallam
2023-05-04 16:33:05 -03:00
коммит произвёл GitHub
родитель fefca512c8
Коммит 30a053314b
2 изменённых файлов: 18 добавлений и 0 удалений

9
server/channels/imports/boards_imports.go Обычный файл
Просмотреть файл

@@ -0,0 +1,9 @@
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package imports
import (
// Needed to ensure the init() method in the FocalBoard product is run.
_ "github.com/mattermost/mattermost-server/server/v8/boards/product"
)

Просмотреть файл

@@ -0,0 +1,9 @@
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package imports
import (
// Needed to ensure the init() method in the Playbooks product is run.
_ "github.com/mattermost/mattermost-server/server/v8/playbooks/product"
)