autobaan/src/ntfy/module.ts

11 lines
240 B
TypeScript
Raw Normal View History

2023-09-05 09:12:04 +02:00
import { Module } from '@nestjs/common'
import { NtfyClient } from './client'
import { NtfyProvider } from './provider'
@Module({
providers: [NtfyProvider, NtfyClient],
exports: [NtfyProvider, NtfyClient],
})
export class NtfyModule {}