diff options
Diffstat (limited to 'tests/Server.hs')
-rw-r--r-- | tests/Server.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/Server.hs b/tests/Server.hs index f636b0be..7cd6a5d6 100644 --- a/tests/Server.hs +++ b/tests/Server.hs | |||
@@ -1,6 +1,7 @@ | |||
1 | {-# LANGUAGE IncoherentInstances #-} | 1 | {-# LANGUAGE IncoherentInstances #-} |
2 | module Main (main) where | 2 | module Main (main) where |
3 | 3 | ||
4 | import Data.BEncode | ||
4 | import Remote.KRPC | 5 | import Remote.KRPC |
5 | import Shared | 6 | import Shared |
6 | 7 | ||
@@ -13,4 +14,5 @@ main = server 6000 | |||
13 | , swapM ==> \(a, b) -> return (b, a) | 14 | , swapM ==> \(a, b) -> return (b, a) |
14 | , reverseM ==> return . reverse | 15 | , reverseM ==> return . reverse |
15 | , shiftR ==> \(a, b, c) -> return (c, a, b) | 16 | , shiftR ==> \(a, b, c) -> return (c, a, b) |
17 | , rawM ==> return | ||
16 | ] | 18 | ] |