12 lines
278 B
JavaScript
12 lines
278 B
JavaScript
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import BaseConfig from './config.json';
|
|
import SecretConfig from './config.secret.json';
|
|
|
|
const Config = {
|
|
...BaseConfig,
|
|
...SecretConfig
|
|
};
|
|
|
|
export default Config;
|