diff options
author | Sam T <sta.cs.vsu@gmail.com> | 2013-04-07 04:07:00 +0400 |
---|---|---|
committer | Sam T <sta.cs.vsu@gmail.com> | 2013-04-07 04:07:00 +0400 |
commit | 7f017c7850198a361f2630432ff050c1555d39f5 (patch) | |
tree | eb23ab449291b1855f04d9dc916f34eea78a166f | |
parent | cb47bec6a3054a9190811e8305a8d748e5d2041c (diff) |
add main module
-rw-r--r-- | src/Network/Torrent.hs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Network/Torrent.hs b/src/Network/Torrent.hs new file mode 100644 index 00000000..c1f659b7 --- /dev/null +++ b/src/Network/Torrent.hs | |||
@@ -0,0 +1,11 @@ | |||
1 | module Network.Torrent | ||
2 | ( module Network.Torrent.PeerID | ||
3 | , module Network.Torrent.THP | ||
4 | , module Network.Torrent.Handshake | ||
5 | , module Network.Torrent.PWP | ||
6 | ) where | ||
7 | |||
8 | import Network.Torrent.PWP | ||
9 | import Network.Torrent.THP | ||
10 | import Network.Torrent.Handshake | ||
11 | import Network.Torrent.PeerID \ No newline at end of file | ||