wizapp-stdlib/codegen/utils.py
Abdelrahman Said aa04fab6ea Update codegen
2025-04-16 10:05:42 +01:00

7 lines
157 B
Python

from pathlib import Path
def load_func_body_from_file(filename: Path) -> str:
with open(filename, "r") as infile:
return infile.read().strip()