chore: uploader service

This commit is contained in:
Matin
2025-01-26 16:08:52 +03:30
parent d6985fff26
commit e4425a07d6
13 changed files with 1426 additions and 6 deletions
+8
View File
@@ -0,0 +1,8 @@
export interface IFile {
fieldname: string;
originalname: string;
encoding: string;
mimetype: string;
buffer: Buffer;
size: number;
}