# # SPDX-FileCopyrightText: Hadad # SPDX-License-Identifier: Apache-2.0 # async def load_file_bytes(file_path): with open(file_path, 'rb') as stream: return stream.read()