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