Files
myDrive/backend/utils/getFSStoragePath.ts
T
2025-02-24 11:29:21 -05:00

10 lines
165 B
TypeScript

import env from "../enviroment/env";
export const getFSStoragePath = () => {
if (env.docker) {
return "/data/";
} else {
return env.fsDirectory;
}
};