mirror of
https://github.com/sasjs/server.git
synced 2026-01-04 21:30:05 +00:00
8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
import dirTree from 'directory-tree'
|
|
import path from 'path'
|
|
|
|
export const sasjsExecutor = () => {
|
|
const tree = dirTree(path.join(__dirname, '..', '..', 'tmp'))
|
|
return tree
|
|
}
|