feat(typing): More types, cleaner structure

This commit is contained in:
2026-04-30 14:12:35 +02:00
parent 31426c006b
commit f9e6120910
8 changed files with 95 additions and 57 deletions
+11
View File
@@ -0,0 +1,11 @@
from typing import TypedDict
class ArchMgrGitConfig(TypedDict):
creds: dict # TODO:
repos: dict # TODO
class ArchMgrGitRepoConfig(TypedDict):
clone_path: str
url: str