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
14 строки
405 B
Go
14 строки
405 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
//go:build testlicensekey
|
|
|
|
package utils
|
|
|
|
import _ "embed"
|
|
|
|
// TODO: license-public-key-test.txt currently has the contents of the prod public key.
|
|
// Change to the test public key when ready for dev images to use test license key.
|
|
|
|
//go:embed license-public-key-test.txt
|
|
var publicKey []byte
|