( userId: string, projectId: string, fileName: string )
| 71 | }; |
| 72 | |
| 73 | export const readProjectContent = async ( |
| 74 | userId: string, |
| 75 | projectId: string, |
| 76 | fileName: string |
| 77 | ): Promise<string> => { |
| 78 | const contentPath = getProjectContentPath(userId, projectId, fileName); |
| 79 | return fsPromises.readFile(contentPath, 'utf8'); |
| 80 | }; |
| 81 | |
| 82 | export const deleteProjectContent = async ( |
| 83 | userId: string, |
nothing calls this directly
no test coverage detected