diff options
| author | Valentin Popov <valentin@popov.link> | 2026-02-05 13:19:56 +0300 |
|---|---|---|
| committer | Valentin Popov <valentin@popov.link> | 2026-02-05 13:19:56 +0300 |
| commit | efa89313fa4152252b477aafd88f7cf4a66747d8 (patch) | |
| tree | 5939b251fe1bbc6bea3881a71154cabd3aa538ec /server/src/index.ts | |
| parent | f6de8611955bf382612996500efba21a2d64ea1f (diff) | |
| download | strapi-plugin-checkbox-list-efa89313fa4152252b477aafd88f7cf4a66747d8.tar.xz strapi-plugin-checkbox-list-efa89313fa4152252b477aafd88f7cf4a66747d8.zip | |
Initial Strapi plugin project
Diffstat (limited to 'server/src/index.ts')
| -rw-r--r-- | server/src/index.ts | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/server/src/index.ts b/server/src/index.ts new file mode 100644 index 0000000..733b4fe --- /dev/null +++ b/server/src/index.ts @@ -0,0 +1,30 @@ +/** + * Application methods + */ +import bootstrap from './bootstrap'; +import destroy from './destroy'; +import register from './register'; + +/** + * Plugin server methods + */ +import config from './config'; +import contentTypes from './content-types'; +import controllers from './controllers'; +import middlewares from './middlewares'; +import policies from './policies'; +import routes from './routes'; +import services from './services'; + +export default { + register, + bootstrap, + destroy, + config, + controllers, + routes, + services, + contentTypes, + policies, + middlewares, +}; |
