strona-czynna/src/back/file-manager.ts
Kuba Orlik 85fb1d29c7 Move to the new file-pointer syntax
Summary:
Harmonize file pointer behavior across JDD, sealious, sealgen

Remove ghosts of previous tests

Reviewers: #reviewers

Subscribers: jenkins-user

Differential Revision: https://hub.sealcode.org/D1446
2024-04-30 10:12:04 +02:00

8 lines
256 B
TypeScript

import { FileManager } from "@sealcode/file-manager";
import { UPLOADS_FS_DIR } from "./config.js";
export const TheFileManager = new FileManager(
UPLOADS_FS_DIR,
"/api/v1/uploaded-files" // this value comes from Sealious, currently not customizable
);