aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/app/Effect.hs
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2024-06-07 17:08:01 +0200
committerLibravatar Alexander Foremny <aforemny@posteo.de>2024-06-08 09:56:20 +0200
commit2e67bf911533a66b5a5b7b50481b426adff8c7db (patch)
tree71481ebe7602ea3d5c84438d0ca829e26ca75a2a /frontend/app/Effect.hs
parent8a34cc822c2c508472fe29ab2be1b74ba06e59e6 (diff)
reload collections when creating
Diffstat (limited to 'frontend/app/Effect.hs')
-rw-r--r--frontend/app/Effect.hs5
1 files changed, 5 insertions, 0 deletions
diff --git a/frontend/app/Effect.hs b/frontend/app/Effect.hs
new file mode 100644
index 0000000..ad87d72
--- /dev/null
+++ b/frontend/app/Effect.hs
@@ -0,0 +1,5 @@
+module Effect (Eff (..)) where
+
+data Eff
+ = ReloadCollections
+ deriving (Show, Eq)