mirror of
https://github.com/sasjs/server.git
synced 2025-12-10 11:24:35 +00:00
8 lines
212 B
TypeScript
8 lines
212 B
TypeScript
import { createFolder } from '@sasjs/utils'
|
|
import { getTmpFilesFolderPath } from './file'
|
|
|
|
export const setupFolders = async () => {
|
|
const drivePath = getTmpFilesFolderPath()
|
|
await createFolder(drivePath)
|
|
}
|