aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/app/Effect.hs
blob: a79754f7497adc16a05deb3c9ebd375744460cbf (plain)
1
2
3
4
5
6
7
8
module Effect (Eff (..)) where

import Miso.String (MisoString)

data Eff
  = ReloadCollections
  | Log MisoString
  deriving (Show, Eq)