This commit is contained in:
Sandy Maguire 2019-03-20 00:38:04 -04:00
parent 06fa6037a0
commit c059127810

View File

@ -5,7 +5,6 @@
{-# LANGUAGE GADTs #-} {-# LANGUAGE GADTs #-}
{-# LANGUAGE LambdaCase #-} {-# LANGUAGE LambdaCase #-}
{-# LANGUAGE PolyKinds #-} {-# LANGUAGE PolyKinds #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE TypeOperators #-} {-# LANGUAGE TypeOperators #-}
module Polysemy.State module Polysemy.State
@ -19,7 +18,6 @@ module Polysemy.State
import qualified Control.Monad.Trans.State.Strict as S import qualified Control.Monad.Trans.State.Strict as S
import Polysemy import Polysemy
import Polysemy.Effect import Polysemy.Effect
import Polysemy.Effect.TH
data State s m a data State s m a