1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 11:24:35 +00:00

feat: add sasjsExecutor controller

This commit is contained in:
2021-10-07 17:22:44 +00:00
parent a446f5c4f7
commit 279fbf2a9a
2 changed files with 8 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
export * from './sas'
export * from './deploy'
export * from './sasjsExecutor'

View File

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