1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-11-24 08:22:29 +02:00

Multi product architecture (#3258)

* skeleton lifecycle

* bare minimum to satisfy mm-server import

* added boards_imports.go

* move boards_imports.go to correct package
This commit is contained in:
Doug Lauder 2022-06-21 11:49:01 -04:00 committed by GitHub
parent 34e7f88f53
commit 90fcae066b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,10 @@
// 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.
// This file is copied to the mmserver imports package via makefile.
_ "github.com/mattermost/focalboard/mattermost-plugin/product"
)