Initial commit

This commit is contained in:
2022-10-02 19:25:41 +02:00
commit 03fd9ae389
17 changed files with 1151 additions and 0 deletions

10
qbit_ci/change_map.py Normal file
View File

@@ -0,0 +1,10 @@
import typing
class ChangeMap:
def __init__(self, changes: typing.Dict[typing.Any, typing.Any]) -> None:
self._changes: typing.Dict[typing.Any, typing.Any] = changes
def __getattr__(self, __name: str) -> typing.Any:
return self._changes.get(__name)
__all__ = ("ChangeMap",)