(path: string, category: string)
| 76 | }) |
| 77 | |
| 78 | const createFileEntry = (path: string, category: string): Entry => ({ |
| 79 | id: "file:" + path, |
| 80 | type: "file", |
| 81 | title: path, |
| 82 | category, |
| 83 | path, |
| 84 | }) |
| 85 | |
| 86 | const createSessionEntry = ( |
| 87 | input: { |
no outgoing calls
no test coverage detected