Remove user type for more idiomatic auth combinators
This commit is contained in:
parent
9decfee68b
commit
5cc78b435a
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ import GHC.TypeLits (Symbol)
|
|||
-- In Basic Auth, username and password are base64-encoded and transmitted via
|
||||
-- the @Authorization@ header. Handshakes are not required, making it
|
||||
-- relatively efficient.
|
||||
data BasicAuth (realm :: Symbol) (usr :: *)
|
||||
data BasicAuth (realm :: Symbol)
|
||||
deriving (Typeable)
|
||||
|
||||
-- | A generalized Authentication combinator.
|
||||
|
|
Loading…
Reference in a new issue