| import { Module } from '@nestjs/common'; | |
| import { ContentSafeService } from './content-safe.service'; | |
| ({ | |
| providers: [ContentSafeService], | |
| exports: [ContentSafeService], | |
| }) | |
| export class ContentSafeModule {} | |
| import { Module } from '@nestjs/common'; | |
| import { ContentSafeService } from './content-safe.service'; | |
| ({ | |
| providers: [ContentSafeService], | |
| exports: [ContentSafeService], | |
| }) | |
| export class ContentSafeModule {} | |