diff options
author | Sam T <pxqr.sta@gmail.com> | 2013-05-14 10:27:36 +0400 |
---|---|---|
committer | Sam T <pxqr.sta@gmail.com> | 2013-05-14 10:27:36 +0400 |
commit | d0038e9bde22751c9c926796a6c46be62a3cb81b (patch) | |
tree | d0955ea60d53d672f10e1e7c3be065a65b4193a6 /bench/Server.hs | |
parent | a2bc26abbe6ccea464c04b990f8a4a8fa769ba2a (diff) |
~ Minor changes.
Diffstat (limited to 'bench/Server.hs')
-rw-r--r-- | bench/Server.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bench/Server.hs b/bench/Server.hs index cb5ed316..ece5a7a9 100644 --- a/bench/Server.hs +++ b/bench/Server.hs | |||
@@ -1,10 +1,11 @@ | |||
1 | {-# LANGUAGE OverloadedStrings #-} | 1 | {-# LANGUAGE OverloadedStrings #-} |
2 | module Main (main) where | 2 | module Main (main) where |
3 | 3 | ||
4 | import Data.ByteString (ByteString) | ||
4 | import Remote.KRPC | 5 | import Remote.KRPC |
5 | 6 | ||
6 | 7 | ||
7 | echo :: Method [Int] [Int] | 8 | echo :: Method ByteString ByteString |
8 | echo = method "echo" ["x"] ["x"] | 9 | echo = method "echo" ["x"] ["x"] |
9 | 10 | ||
10 | main :: IO () | 11 | main :: IO () |