re-format Servant client pattern matching

This commit is contained in:
Trolli Schmittlauch 2020-09-07 16:35:59 +02:00
parent 5c338b9cd7
commit c536994afe

View file

@ -321,15 +321,15 @@ tagUnsubscribe serv hashtag origin = do
clientAPI :: Proxy PostServiceAPI clientAPI :: Proxy PostServiceAPI
clientAPI = Proxy clientAPI = Proxy
relayInboxClient :: Text -> Text -> ClientM NoContent relayInboxClient
relayInboxClient :<|> subscriptionDeliveryClient :<|> subscriptionDeliveryClient
:<|> postFetchClient :<|> postFetchClient
:<|> postMultiFetchClient :<|> postMultiFetchClient
:<|> postInboxClient :<|> postInboxClient
:<|> tagDeliveryClient :<|> tagDeliveryClient
:<|> tagSubscribeClient :<|> tagSubscribeClient
:<|> tagUnsubscribeClient :<|> tagUnsubscribeClient
= client clientAPI = client clientAPI
-- | Deliver the subscriber list of all hashtags in the interval [fromTag, toTag] -- | Deliver the subscriber list of all hashtags in the interval [fromTag, toTag]