Files
directus/api/src/index.ts
Nicola Krumschmidt 03cf03b1bf Clean up API exports (#9418)
* Move API entrypoint to typescipt

* Remove explicit cli exort from API

The "./*" export should export all subpaths, so explicitly exporting the cli shouldn't be necessary.

* Remove dedicated start script from API

This script isn't even included in the final npm package and it's only used by the test Dockerfile.
2021-11-03 17:34:48 -04:00

4 lines
104 B
TypeScript

export { default as createApp } from './app';
export * from './services';
export * from './exceptions';