Files
PolyMPR/toolbox/module/list.ts
T
2025-01-22 14:24:55 +01:00

11 lines
223 B
TypeScript

/**
* List all modules of PolyMPR.
*/
export async function listModules(): Promise<void> {
for await (const path of Deno.readDir("routes/(apps)")) {
if (path.isDirectory) {
console.log(path.name);
}
}
}