summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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