| 7 | import { FileManagerService } from '../utils/fileManager.service'; |
| 8 | import { promises as fs } from 'fs'; |
| 9 | export class AuthFileManager { |
| 10 | constructor(private readonly fileManagerService: FileManagerService) {} |
| 11 | |
| 12 | async createFile(name: string, content: string, path: string): Promise<void> { |
nothing calls this directly
no outgoing calls
no test coverage detected