aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/hrc/rules/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'hrc/rules/__init__.py')
-rw-r--r--hrc/rules/__init__.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/hrc/rules/__init__.py b/hrc/rules/__init__.py
deleted file mode 100644
index ff1c230..0000000
--- a/hrc/rules/__init__.py
+++ /dev/null
@@ -1,19 +0,0 @@
-import functools
-from typing import Generic, Any, Type
-
-from abc import ABC
-
-from . import BaseRule
-from ..typing import RulesT
-
-
-class Rules(ABC, Generic[RulesT]):
- ...
-
-
-def aliases(names, ignore_case=False):
- def decorator(func):
- func._aliases = names
- func._ignore_case = ignore_case
- return func
- return decorator