mirror of
https://github.com/strapi/strapi.git
synced 2025-07-24 01:18:17 +00:00
13 lines
183 B
JavaScript
13 lines
183 B
JavaScript
'use strict';
|
|
|
|
module.exports = scope => {
|
|
|
|
// Finally, return the JSON.
|
|
return {
|
|
defaultConnection: 'default',
|
|
connections: {
|
|
default: scope.database
|
|
}
|
|
};
|
|
};
|