12 lines
189 B
Python
12 lines
189 B
Python
from typing import TypedDict
|
|
|
|
|
|
class ArchMgrGitConfig(TypedDict):
|
|
creds: dict # TODO:
|
|
repos: dict # TODO
|
|
|
|
|
|
class ArchMgrGitRepoConfig(TypedDict):
|
|
clone_path: str
|
|
url: str
|