mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 12:32:34 +10:00
Implementation of a universal upload allowing for multiple storage backends starting with `database` and `s3`. Allows clients to put and retrieve files from either client or server using a blend of client and server actions.
6 lines
191 B
TypeScript
6 lines
191 B
TypeScript
export const ONE_SECOND = 1000;
|
|
export const ONE_MINUTE = ONE_SECOND * 60;
|
|
export const ONE_HOUR = ONE_MINUTE * 60;
|
|
export const ONE_DAY = ONE_HOUR * 24;
|
|
export const ONE_WEEK = ONE_DAY * 7;
|