(filename: string)
| 21 | } |
| 22 | |
| 23 | export async function createFeedbackArchivePath(filename: string): Promise<{ |
| 24 | readonly archivePath: string; |
| 25 | readonly cleanupDir: string; |
| 26 | }> { |
| 27 | const archivePath = await createArchivePath(filename); |
| 28 | return { archivePath, cleanupDir: archivePathCleanupDir(archivePath) }; |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Remove feedback-upload archive directories older than 24 hours. Packaging |
no test coverage detected