summaryrefslogtreecommitdiff
path: root/htmtl/expression_modifier.py
diff options
context:
space:
mode:
authorAsko Nõmm <asko@nmm.ee>2024-12-30 18:51:58 +0200
committerAsko Nõmm <asko@nmm.ee>2024-12-30 18:51:58 +0200
commit1ac6564a775835dd9bc93a2fb48ef87f9fc2daed (patch)
tree68bc998db7dd5d1b203671822273283eb6b6176a /htmtl/expression_modifier.py
parent69968c9e34ae57cfee905d94fc98ec6a83fbe92b (diff)
bump
Diffstat (limited to 'htmtl/expression_modifier.py')
-rw-r--r--htmtl/expression_modifier.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/htmtl/expression_modifier.py b/htmtl/expression_modifier.py
new file mode 100644
index 0000000..abb1619
--- /dev/null
+++ b/htmtl/expression_modifier.py
@@ -0,0 +1,7 @@
+from abc import abstractmethod, ABC
+
+
+class ExpressionModifier(ABC):
+ @abstractmethod
+ def modify(self, expression):
+ pass \ No newline at end of file