90fcae066b
* skeleton lifecycle * bare minimum to satisfy mm-server import * added boards_imports.go * move boards_imports.go to correct package
10 lines
348 B
Go
10 lines
348 B
Go
// 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"
|
|
)
|