mirror of
https://github.com/stonith404/pingvin-share.git
synced 2024-11-15 20:00:33 +01:00
9 lines
187 B
TypeScript
9 lines
187 B
TypeScript
|
import { Module } from "@nestjs/common";
|
||
|
import { EmailService } from "./email.service";
|
||
|
|
||
|
@Module({
|
||
|
providers: [EmailService],
|
||
|
exports: [EmailService],
|
||
|
})
|
||
|
export class EmailModule {}
|