diff options
Diffstat (limited to 'hrc/rules/__init__.py')
| -rw-r--r-- | hrc/rules/__init__.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/hrc/rules/__init__.py b/hrc/rules/__init__.py index be96d47..ccd3dbc 100644 --- a/hrc/rules/__init__.py +++ b/hrc/rules/__init__.py @@ -1 +1,11 @@ -from . import BaseRule
\ No newline at end of file +from typing import Generic, Any, Type + +from abc import ABC + +from . import BaseRule +from ..typing import RulesT + + +class Rules(ABC, Generic[RulesT]): + ... +
\ No newline at end of file |
