Fix unused warning

This commit is contained in:
Amar 2016-04-25 11:50:16 +08:00
parent d2f8e96012
commit 86573468a3

View file

@ -63,7 +63,7 @@ import Servant.Common.Req
client :: HasClient layout => Proxy layout -> Client layout
client p = clientWithRoute p defReq
newtype InjectArg arg = InjectArg { getInjectedArg :: arg }
newtype InjectArg arg = InjectArg arg
class HasArgument s arg result | s arg -> result, s result -> arg where
supplyArgument :: arg -> s -> result