10 lines
165 B
TypeScript
10 lines
165 B
TypeScript
import env from "../enviroment/env";
|
|
|
|
export const getFSStoragePath = () => {
|
|
if (env.docker) {
|
|
return "/data/";
|
|
} else {
|
|
return env.fsDirectory;
|
|
}
|
|
};
|