Add file paths

This commit is contained in:
Liam 2022-11-13 22:44:55 +00:00
parent 95ff7d8f2b
commit 66d4d68bb4

4
src/consts/filePaths.js Normal file

@ -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`;