Combines the following repositories into one: https://github.com/mattermost/mattermost-server https://github.com/mattermost/mattermost-webapp https://github.com/mattermost/focalboard https://github.com/mattermost/mattermost-plugin-playbooks
16 строки
400 B
Go
16 строки
400 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package assets
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
// DefaultTemplatesArchive is an embedded archive file containing the default
|
|
// templates to be imported to team 0.
|
|
// This archive is generated with `make templates-archive`
|
|
//
|
|
//go:embed templates.boardarchive
|
|
var DefaultTemplatesArchive []byte
|