Initial commit from Strapi

This commit is contained in:
Julian Krauser 2024-10-26 18:56:25 +02:00
commit 578aca62e5
22 changed files with 30316 additions and 0 deletions

20
src/index.ts Normal file
View file

@ -0,0 +1,20 @@
// import type { Core } from '@strapi/strapi';
export default {
/**
* An asynchronous register function that runs before
* your application is initialized.
*
* This gives you an opportunity to extend code.
*/
register(/* { strapi }: { strapi: Core.Strapi } */) {},
/**
* An asynchronous bootstrap function that runs before
* your application gets started.
*
* This gives you an opportunity to set up your data model,
* run jobs, or perform some special logic.
*/
bootstrap(/* { strapi }: { strapi: Core.Strapi } */) {},
};