mirror of
https://github.com/strapi/strapi.git
synced 2025-08-23 08:09:10 +00:00
18 lines
263 B
JavaScript
Executable File
18 lines
263 B
JavaScript
Executable File
'use strict';
|
|
|
|
/**
|
|
* Module dependencies
|
|
*/
|
|
|
|
// Local dependencies.
|
|
const Strapi = require('./Strapi');
|
|
|
|
/**
|
|
* Expose `Strapi` factory
|
|
* (maintains backwards compatibility with constructor usage).
|
|
*/
|
|
|
|
module.exports = function () {
|
|
return new Strapi();
|
|
};
|