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

feat(drive): GET folder contents API added

This commit is contained in:
Saad Jutt
2022-03-29 23:27:44 +05:00
parent 0a5aeceab5
commit 0ac9e4af7d
9 changed files with 313 additions and 34 deletions

View File

@@ -0,0 +1,7 @@
import { createFolder } from '@sasjs/utils'
import { getTmpFilesFolderPath } from './file'
export const setupFolders = async () => {
const drivePath = getTmpFilesFolderPath()
await createFolder(drivePath)
}