MCPcopy Create free account
hub / github.com/MoonshotAI/kimi-code / createFeedbackArchivePath

Function createFeedbackArchivePath

apps/kimi-code/src/feedback/archive.ts:23–29  ·  view source on GitHub ↗
(filename: string)

Source from the content-addressed store, hash-verified

21}
22
23export 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

Callers 1

uploadProducedArchiveFunction · 0.90

Calls 2

createArchivePathFunction · 0.85
archivePathCleanupDirFunction · 0.85

Tested by

no test coverage detected