/** * This is the server-only module. It exports classes, functions and interfaces that are for the * server implementations to use * * Any of the types (classes, functions etc) defined under this module can be imported from * `@ubiquits/core/server` * * Example: * ```typescript * import { AbstractController } from 'ubiquits/core/server'; * ``` * * @module server * @preferred */ /** */ export * from './main'; export * from './bootstrap'; export * from './controllers'; export * from './servers'; export * from './services'; export * from './seeders'; export * from './migrations'; export * from './stores'; export * from './middleware'; export * from './registry';