6 lines
85 B
Haskell
6 lines
85 B
Haskell
module Effect (Eff (..)) where
|
|
|
|
data Eff
|
|
= ReloadCollections
|
|
deriving (Show, Eq)
|