mirror of https://github.com/tycrek/ass
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
285 B
15 lines
285 B
1 year ago
|
/**
|
||
|
* Uploads a file to your configured S3 provider
|
||
|
*/
|
||
|
export const uploadFileS3 = () => { }
|
||
|
|
||
|
/**
|
||
|
* Gets a file from your configured S3 provider
|
||
|
*/
|
||
|
export const getFileS3 = () => { }
|
||
|
|
||
|
/**
|
||
|
* Deletes a file from your configured S3 provider
|
||
|
*/
|
||
|
export const deleteFileS3 = () => { }
|