blob: 9f3eea519de6bd9308f744112d5ca866a6b901d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{-# OPTIONS_GHC -Wno-orphans #-}
module Crypto.JOSE.Error.Instances () where
import Data.Monoid (Monoid)
import Control.Monad (Monad)
import Control.Applicative (Alternative)
import Crypto.JOSE.Error
deriving newtype instance (Monad m, Monoid e) => Alternative (JOSE e m)
|