initial commit

This commit is contained in:
2025-01-12 19:54:41 -06:00
commit f637529a8d
52 changed files with 2190 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import os
from config import REPO_FORMATS
def repo_name() -> str:
for repo in REPO_FORMATS:
if repo in os.getcwd():
return repo
print("Sorry, this repo isn't setup to use Git Formatter")
exit(1)