diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-06-07 17:08:01 +0200 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-06-08 09:56:20 +0200 |
commit | 2e67bf911533a66b5a5b7b50481b426adff8c7db (patch) | |
tree | 71481ebe7602ea3d5c84438d0ca829e26ca75a2a /frontend/app/Effect.hs | |
parent | 8a34cc822c2c508472fe29ab2be1b74ba06e59e6 (diff) |
reload collections when creating
Diffstat (limited to 'frontend/app/Effect.hs')
-rw-r--r-- | frontend/app/Effect.hs | 5 |
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) |