/
githubmirror
/
strapi
Обзор
Документация
Войти
/
githubmirror
/
strapi
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/core/upload/server/src/index.ts
20 строк
469 B
Alexandre Bodin
chore: migrate upload plugin to typescript
21 мар 2024, 11:02
21 мар 2024, 11:02
a9db1e4
Код
Авторство
О чём код?
import type {} from 'koa-body'; import type {} from '@strapi/types'; import { register } from './register'; import { bootstrap } from './bootstrap'; import { contentTypes } from './content-types'; import { services } from './services'; import { routes } from './routes'; import { config } from './config'; import { controllers } from './controllers'; export default () => ({ register, bootstrap, config, routes, controllers, contentTypes, services, });