aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/app/Effect.hs
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/Effect.hs')
-rw-r--r--frontend/app/Effect.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/frontend/app/Effect.hs b/frontend/app/Effect.hs
index ad87d72..a79754f 100644
--- a/frontend/app/Effect.hs
+++ b/frontend/app/Effect.hs
@@ -1,5 +1,8 @@
module Effect (Eff (..)) where
+import Miso.String (MisoString)
+
data Eff
= ReloadCollections
+ | Log MisoString
deriving (Show, Eq)