diff --git a/server/channels/imports/boards_imports.go b/server/channels/imports/boards_imports.go new file mode 100644 index 0000000000..ca7aa36124 --- /dev/null +++ b/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" +) diff --git a/server/channels/imports/playbooks_imports.go b/server/channels/imports/playbooks_imports.go new file mode 100644 index 0000000000..260e41af12 --- /dev/null +++ b/server/channels/imports/playbooks_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 Playbooks product is run. + _ "github.com/mattermost/mattermost-server/server/v8/playbooks/product" +)