mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
8 lines
216 B
TypeScript
8 lines
216 B
TypeScript
import { cloudinary } from '../../../config/cloudinary';
|
|
|
|
const clearCloudinaryStorage = async () => {
|
|
await cloudinary.api.delete_resources_by_prefix('biergarten-dev/');
|
|
};
|
|
|
|
export default clearCloudinaryStorage;
|