diff options
Diffstat (limited to 'src/Network/KRPC/Method.hs')
-rw-r--r-- | src/Network/KRPC/Method.hs | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/src/Network/KRPC/Method.hs b/src/Network/KRPC/Method.hs deleted file mode 100644 index da69d14b..00000000 --- a/src/Network/KRPC/Method.hs +++ /dev/null | |||
@@ -1,40 +0,0 @@ | |||
1 | -- | | ||
2 | -- Copyright : (c) Sam Truzjan 2013, 2014 | ||
3 | -- License : BSD3 | ||
4 | -- Maintainer : pxqr.sta@gmail.com | ||
5 | -- Stability : experimental | ||
6 | -- Portability : portable | ||
7 | -- | ||
8 | -- Normally, you don't need to import this module. | ||
9 | -- | ||
10 | {-# LANGUAGE CPP #-} | ||
11 | {-# LANGUAGE DefaultSignatures #-} | ||
12 | {-# LANGUAGE FlexibleContexts #-} | ||
13 | {-# LANGUAGE FunctionalDependencies #-} | ||
14 | {-# LANGUAGE GeneralizedNewtypeDeriving #-} | ||
15 | {-# LANGUAGE MultiParamTypeClasses #-} | ||
16 | {-# LANGUAGE RankNTypes #-} | ||
17 | {-# LANGUAGE ScopedTypeVariables #-} | ||
18 | {-# LANGUAGE StandaloneDeriving #-} | ||
19 | {-# LANGUAGE TypeFamilies #-} | ||
20 | module Network.KRPC.Method | ||
21 | ( Method (..) | ||
22 | , KRPC (..) | ||
23 | ) where | ||
24 | |||
25 | #ifdef VERSION_bencoding | ||
26 | import Data.BEncode (BEncode) | ||
27 | #else | ||
28 | import Data.Serialize | ||
29 | #endif | ||
30 | import Data.ByteString.Char8 as BC | ||
31 | import Data.Char | ||
32 | import Data.Monoid | ||
33 | import Data.List as L | ||
34 | import Data.String | ||
35 | import Data.Typeable | ||
36 | import Network.DatagramServer.Mainline | ||
37 | import Network.DatagramServer.Types | ||
38 | import Network.DHT.Types | ||
39 | |||
40 | |||