ohmyform-api/src/app.providers.ts
2020-05-08 22:40:14 +02:00

12 lines
239 B
TypeScript

import { commands } from './command';
import { guards } from './guard';
import { resolvers } from './resolver';
import { services } from './service';
export const providers = [
...resolvers,
...commands,
...services,
...guards,
]