Spaces:
Runtime error
Runtime error
File size: 192 Bytes
4acc19f | 1 2 3 4 5 6 7 8 9 | import { Module } from '@nestjs/common';
import { CommonService } from './common.service';
@Module({
providers: [CommonService],
exports: [CommonService],
})
export class CommonModule {}
|