Restructure

This commit is contained in:
Brandon Hancock
2024-08-02 11:28:51 -04:00
parent 43e37444f3
commit 4660fb057b
18 changed files with 155 additions and 108 deletions

View File

@@ -2,8 +2,6 @@ import click
def copy_template(src, dst, name, class_name, folder_name):
print(f"Copying {src} to {dst}")
print(f"Interpolating {name}, {class_name}, {folder_name}")
"""Copy a file from src to dst."""
with open(src, "r") as file:
content = file.read()