import { config } from 'dotenv'; import { compressAndResizeBucketImage } from './resize_image/resize_image'; config(); // The cloud function needs to have a "resizeBucketImage" named export to run. // Changing the implementation makes us renaming the export in order to be backward compatible // as there is no IAC (infra as code) to change its name easily. export { compressAndResizeBucketImage as resizeBucketImage };