ohmyform-api/src/app.providers.ts
2021-05-02 12:43:54 +02:00

12 lines
235 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,
]