summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2017-09-15 04:32:05 -0400
committerjoe <joe@jerkface.net>2017-09-15 04:32:05 -0400
commit0f0ccf566b6df2a1b1ad08f2781f7fd29926dde6 (patch)
tree1c4576c8389cac3bf98fdad0abebbf0b516a4ac9
parent8b59a7a567d50dc996a3b98f223df45f3e6739ef (diff)
Moved ToxTransport to its hierarchical location.
-rw-r--r--Tox.hs2
-rw-r--r--src/Network/Tox/Transport.hs (renamed from ToxTransport.hs)2
2 files changed, 2 insertions, 2 deletions
diff --git a/Tox.hs b/Tox.hs
index 6dce9757..98c3811b 100644
--- a/Tox.hs
+++ b/Tox.hs
@@ -84,7 +84,7 @@ import Network.BitTorrent.DHT.Token as Token
84import GHC.TypeLits 84import GHC.TypeLits
85 85
86import Crypto.Tox hiding (Assym) 86import Crypto.Tox hiding (Assym)
87import ToxTransport 87import Network.Tox.Transport
88import Network.Tox.Address 88import Network.Tox.Address
89import qualified Network.Tox.DHT.Transport as DHT 89import qualified Network.Tox.DHT.Transport as DHT
90import qualified Network.Tox.DHT.Handlers as DHT 90import 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 #-}
9module ToxTransport (toxTransport) where 9module Network.Tox.Transport (toxTransport) where
10 10
11import Network.QueryResponse 11import Network.QueryResponse
12import Crypto.Tox 12import Crypto.Tox