import { Module, Global } from '@nestjs/common'; import { CacheService } from './services/cache.service'; @Global() @Module({ providers: [CacheService], exports: [CacheService], }) export class CommonModule {}