From 7758e48c48b41f5367f80c3230fdd9a8d8ee8274 Mon Sep 17 00:00:00 2001 From: Florian Schroedl Date: Thu, 19 Sep 2024 10:52:15 +0200 Subject: [PATCH] Add legacy macro --- frontend/src/app/main/ui/workspace/tokens/macros.clj | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 frontend/src/app/main/ui/workspace/tokens/macros.clj diff --git a/frontend/src/app/main/ui/workspace/tokens/macros.clj b/frontend/src/app/main/ui/workspace/tokens/macros.clj new file mode 100644 index 0000000000..eb143c86e8 --- /dev/null +++ b/frontend/src/app/main/ui/workspace/tokens/macros.clj @@ -0,0 +1,5 @@ +(ns app.main.ui.workspace.tokens.macros) + +(defmacro legacy + "Purely annotational macro to find instances later to remove when the refactor to tokens-lib is done." + [& body] `(do ~@body))