def _upload_blob()

in IAC/temp/function-source/src/corretor_gemini/utils/imageUploader.py [0:0]


def _upload_blob(bucket, file_bytes, destination_blob_name):
    """Uploads a file to the bucket."""
    blob = bucket.blob(destination_blob_name)
    image = io.BytesIO(file_bytes)
    blob.upload_from_file(image)