summaryrefslogtreecommitdiff
path: root/tests/Server.hs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Server.hs')
-rw-r--r--tests/Server.hs2
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 #-}
2module Main (main) where 2module Main (main) where
3 3
4import Data.BEncode
4import Remote.KRPC 5import Remote.KRPC
5import Shared 6import 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 ]