diff options
author | joe <joe@jerkface.net> | 2017-09-15 04:32:05 -0400 |
---|---|---|
committer | joe <joe@jerkface.net> | 2017-09-15 04:32:05 -0400 |
commit | 0f0ccf566b6df2a1b1ad08f2781f7fd29926dde6 (patch) | |
tree | 1c4576c8389cac3bf98fdad0abebbf0b516a4ac9 | |
parent | 8b59a7a567d50dc996a3b98f223df45f3e6739ef (diff) |
Moved ToxTransport to its hierarchical location.
-rw-r--r-- | Tox.hs | 2 | ||||
-rw-r--r-- | src/Network/Tox/Transport.hs (renamed from ToxTransport.hs) | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -84,7 +84,7 @@ import Network.BitTorrent.DHT.Token as Token | |||
84 | import GHC.TypeLits | 84 | import GHC.TypeLits |
85 | 85 | ||
86 | import Crypto.Tox hiding (Assym) | 86 | import Crypto.Tox hiding (Assym) |
87 | import ToxTransport | 87 | import Network.Tox.Transport |
88 | import Network.Tox.Address | 88 | import Network.Tox.Address |
89 | import qualified Network.Tox.DHT.Transport as DHT | 89 | import qualified Network.Tox.DHT.Transport as DHT |
90 | import qualified Network.Tox.DHT.Handlers as DHT | 90 | import qualified Network.Tox.DHT.Handlers as DHT |
diff --git a/ToxTransport.hs b/src/Network/Tox/Transport.hs index 239000b0..24bd60b7 100644 --- a/ToxTransport.hs +++ b/src/Network/Tox/Transport.hs | |||
@@ -6,7 +6,7 @@ | |||
6 | {-# LANGUAGE ScopedTypeVariables #-} | 6 | {-# LANGUAGE ScopedTypeVariables #-} |
7 | {-# LANGUAGE TupleSections #-} | 7 | {-# LANGUAGE TupleSections #-} |
8 | {-# LANGUAGE TypeOperators #-} | 8 | {-# LANGUAGE TypeOperators #-} |
9 | module ToxTransport (toxTransport) where | 9 | module Network.Tox.Transport (toxTransport) where |
10 | 10 | ||
11 | import Network.QueryResponse | 11 | import Network.QueryResponse |
12 | import Crypto.Tox | 12 | import Crypto.Tox |