diff options
author | Sam Truzjan <pxqr.sta@gmail.com> | 2014-04-04 04:51:36 +0400 |
---|---|---|
committer | Sam Truzjan <pxqr.sta@gmail.com> | 2014-04-04 04:51:36 +0400 |
commit | 1beb66f98504a39c8a6c976f243a1f69ffb48d8d (patch) | |
tree | e26f7eff93b2ef100a768e01b0fbeb239c09dd8a /src/Network/BitTorrent.hs | |
parent | 13793b8d4cf7c5b4a914d778e3523e950aa2493a (diff) |
[Internal] Add EventSource class
Diffstat (limited to 'src/Network/BitTorrent.hs')
-rw-r--r-- | src/Network/BitTorrent.hs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Network/BitTorrent.hs b/src/Network/BitTorrent.hs index 8cb928d3..bcc7cfcf 100644 --- a/src/Network/BitTorrent.hs +++ b/src/Network/BitTorrent.hs | |||
@@ -29,10 +29,6 @@ module Network.BitTorrent | |||
29 | , getClient | 29 | , getClient |
30 | , simpleClient | 30 | , simpleClient |
31 | 31 | ||
32 | -- ** Events | ||
33 | , ClientEvent (..) | ||
34 | , subscription | ||
35 | |||
36 | -- * Torrent | 32 | -- * Torrent |
37 | -- ** Source | 33 | -- ** Source |
38 | , InfoHash | 34 | , InfoHash |
@@ -55,9 +51,13 @@ module Network.BitTorrent | |||
55 | , start | 51 | , start |
56 | , pause | 52 | , pause |
57 | , stop | 53 | , stop |
54 | |||
55 | -- * Events | ||
56 | , EventSource (..) | ||
58 | ) where | 57 | ) where |
59 | 58 | ||
60 | import Data.Torrent as BT | 59 | import Data.Torrent |
61 | import Data.Torrent.InfoHash as BT | 60 | import Data.Torrent.InfoHash |
62 | import Data.Torrent.Magnet as BT | 61 | import Data.Torrent.Magnet |
63 | import Network.BitTorrent.Client as BT \ No newline at end of file | 62 | import Network.BitTorrent.Client |
63 | import Network.BitTorrent.Internal.Types \ No newline at end of file | ||