UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

8 lines (7 loc) 245 B
import asyncHandler from '../utils/async-handler.js'; import { getSchema } from '../utils/get-schema.js'; const schema = asyncHandler(async (req, _res, next) => { req.schema = await getSchema(); return next(); }); export default schema;