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

This reverts commit 76ad948b80.
This commit is contained in:
Jesse Hallam 2023-05-04 16:33:05 -03:00 committed by GitHub
parent fefca512c8
commit 30a053314b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 0 deletions

View File

@ -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"
)

View File

@ -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"
)