mirror of
https://github.com/strapi/strapi.git
synced 2025-11-30 09:01:16 +00:00
13 lines
205 B
JavaScript
13 lines
205 B
JavaScript
import ComponentApi from './ComponentApi';
|
|
import FieldApi from './FieldApi';
|
|
|
|
class Strapi {
|
|
componentApi = ComponentApi();
|
|
|
|
fieldApi = FieldApi();
|
|
}
|
|
|
|
export default () => {
|
|
return new Strapi();
|
|
};
|