1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-08 07:00:04 +00:00

feat: add api endpoint for sasjs drive

This commit is contained in:
2021-10-14 18:21:20 +00:00
parent f90dcff7cf
commit 96b5fef302
4 changed files with 44 additions and 6 deletions

View File

@@ -2,6 +2,6 @@ import dirTree from 'directory-tree'
import path from 'path'
export const sasjsExecutor = () => {
const tree = dirTree(path.join(__dirname, '..'))
const tree = dirTree(path.join(__dirname, '..', '..', 'tmp'))
return tree
}