simplified a bunch of Maybe handling
This commit is contained in:
parent
efa7f54405
commit
cad0e1c8b7
19 changed files with 81 additions and 140 deletions
|
@ -238,10 +238,8 @@ configKeyIds c = do
|
|||
keyIdField s = (split ":" s) !! 4
|
||||
|
||||
configGet :: RemoteConfig -> String -> String
|
||||
configGet c key =
|
||||
case M.lookup key c of
|
||||
Just v -> v
|
||||
Nothing -> error $ "missing " ++ key ++ " in remote config"
|
||||
configGet c key = maybe missing id $ M.lookup key c
|
||||
where missing = error $ "missing " ++ key ++ " in remote config"
|
||||
|
||||
hmacWithCipher :: Cipher -> String -> String
|
||||
hmacWithCipher c = hmacWithCipher' (cipherHmac c)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue