streamflix-api / src /shared /modules /common /common.module.ts
Akshar2325
feat(auth): implement user authentication module with JWT support
4acc19f
Raw
History Blame
192 Bytes
import { Module } from '@nestjs/common';
import { CommonService } from './common.service';
@Module({
providers: [CommonService],
exports: [CommonService],
})
export class CommonModule {}