diff --git a/src/consts/filePaths.js b/src/consts/filePaths.js new file mode 100644 index 0000000..f52808e --- /dev/null +++ b/src/consts/filePaths.js @@ -0,0 +1,4 @@ +import path from "path"; + +export const STORAGE_LOCATION = `${process.cwd()}${path.sep}.storage`; +export const FILE_STORAGE_LOCATION = `${STORAGE_LOCATION}${path.sep}files`;