obtu-ai / utils /file_utils.py
Jose Benitez
clean code
025cc15
raw
history blame contribute delete
165 Bytes
# Load static files
def load_file_content(file_path):
if file_path.is_file():
with file_path.open() as file:
return file.read()
return ""