Pending changes to add API example
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
export async function listModules(): Promise<void> {
|
||||
for await (const path of Deno.readDir("routes/(apps)")) {
|
||||
if (path.isDirectory) {
|
||||
console.log(path.name);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user