| 223 | * List directory contents in the container |
| 224 | */ |
| 225 | export interface FileEntry { |
| 226 | name: string; |
| 227 | type: 'file' | 'directory'; |
| 228 | size: number; |
| 229 | path: string; |
| 230 | } |
| 231 | |
| 232 | export async function listDirectory(sessionId: string, dirPath: string): Promise<FileEntry[]> { |
| 233 | const container = containerCache.get(sessionId); |
nothing calls this directly
no outgoing calls
no test coverage detected