Use only Python

This commit is contained in:
Lucàs
2023-12-26 22:09:40 +01:00
parent 31f70d319f
commit efbf7fb7cc
33 changed files with 625 additions and 391 deletions
+4
View File
@@ -0,0 +1,4 @@
def load_template(template_file_path: str):
with open(template_file_path, 'r') as template_file:
template_content = template_file.read()
return template_content