Remove codegen as submodule and just add it in place

This commit is contained in:
2025-03-02 13:28:26 +00:00
parent fb512e4a15
commit 96db885344
5 changed files with 304 additions and 6 deletions

6
codegen/utils.py Normal file
View File

@@ -0,0 +1,6 @@
from pathlib import Path
def load_func_body_from_file(filename: Path) -> str:
with open(filename, "r") as infile:
return infile.read()