fix: reorder imports in FilesystemController for clarity

- Moved the ChunkManager and ChunkMetadata imports to improve code organization and readability in the FilesystemController file.
This commit is contained in:
Daniel Luiz Alves
2025-08-19 10:05:39 -03:00
parent 724452fb40
commit ddb981cba2

View File

@@ -3,8 +3,8 @@ import { pipeline } from "stream/promises";
import { FastifyReply, FastifyRequest } from "fastify";
import { FilesystemStorageProvider } from "../../providers/filesystem-storage.provider";
import { ChunkManager, ChunkMetadata } from "./chunk-manager";
import { getContentType } from "../../utils/mime-types";
import { ChunkManager, ChunkMetadata } from "./chunk-manager";
export class FilesystemController {
private chunkManager = ChunkManager.getInstance();