Spaces:
Runtime error
Runtime error
File size: 205 Bytes
9f9394b | 1 2 3 4 5 6 7 8 | #
# SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
# SPDX-License-Identifier: Apache-2.0
#
async def load_file_bytes(file_path):
with open(file_path, 'rb') as stream:
return stream.read() |