File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ import Data.Constraint.Extras
2222import Data.Aeson
2323import Data.Default
2424import qualified Data.Text as T
25- import Data.Typeable
2625import GHC.Generics
2726import qualified Data.Map as Map
2827import Data.Some
@@ -34,14 +33,14 @@ import Reflex.Dom.WebSocket
3433
3534-- | A request tagged with an identifier
3635data TaggedRequest = TaggedRequest Int Value
37- deriving ( Typeable , Generic )
36+ deriving Generic
3837
3938instance FromJSON TaggedRequest
4039instance ToJSON TaggedRequest
4140
4241-- | A response tagged with an identifier matching the one in the 'TaggedRequest'. The identifier is the first argument.
4342data TaggedResponse = TaggedResponse Int Value
44- deriving ( Typeable , Generic )
43+ deriving Generic
4544
4645instance FromJSON TaggedResponse
4746instance ToJSON TaggedResponse
You can’t perform that action at this time.
0 commit comments