2020-01-21 19:19:18 +00:00
|
|
|
// Copyright IBM Corp. 2016,2019. All Rights Reserved.
|
2016-09-23 14:32:22 +00:00
|
|
|
// Node module: loopback
|
|
|
|
// This file is licensed under the MIT License.
|
|
|
|
// License text available at https://opensource.org/licenses/MIT
|
|
|
|
|
2016-11-15 21:46:23 +00:00
|
|
|
'use strict';
|
2019-10-07 09:45:34 +00:00
|
|
|
const path = require('path');
|
|
|
|
const SG = require('strong-globalize');
|
2016-09-16 19:31:48 +00:00
|
|
|
|
2016-11-15 21:46:23 +00:00
|
|
|
SG.SetRootDir(path.join(__dirname, '..'), {autonomousMsgLoading: 'all'});
|
2016-09-16 19:31:48 +00:00
|
|
|
module.exports = SG();
|