| 3 | import * as vscode from "vscode"; |
| 4 | |
| 5 | interface Route { |
| 6 | path: string; |
| 7 | url: string; |
| 8 | } |
| 9 | |
| 10 | export const getAllRemixRoutes = async (uri: vscode.Uri) => { |
| 11 | const rootDir = await getRemixRootFromFileUri(uri); |
nothing calls this directly
no outgoing calls
no test coverage detected