11 lines
223 B
TypeScript
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);
|
|
}
|
|
}
|
|
}
|