From 66d4d68bb4a566af7cc34ab0099c4b03744bbaae Mon Sep 17 00:00:00 2001 From: Liam <67254223+RealFascinated@users.noreply.github.com> Date: Sun, 13 Nov 2022 22:44:55 +0000 Subject: [PATCH] Add file paths --- src/consts/filePaths.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/consts/filePaths.js 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`;