mirror of
https://github.com/immich-app/immich.git
synced 2025-12-08 14:23:56 +09:00
[Breaking] newly uploaded file will conform to the default structure of `{uploadLocation}/{userId}/year/year-month-day/filename.ext`
7 lines
116 B
TypeScript
7 lines
116 B
TypeScript
export interface IImmichStorage {
|
|
write(): Promise<void>;
|
|
read(): Promise<void>;
|
|
}
|
|
|
|
export enum IStorageType {}
|