Skip to content

Commit

Permalink
Move helpers to Internal and sort import order
Browse files Browse the repository at this point in the history
  • Loading branch information
saschatimme committed Nov 18, 2016
1 parent 35f82ab commit 7d12630
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions src/Phoenix.elm
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ import WebSocket.LowLevel as WS
import Dict exposing (Dict)
import Task exposing (Task)
import Process
import Phoenix.Internal.Channel as InternalChannel exposing (InternalChannel)
import Phoenix.Internal.Helpers as Helpers exposing ((&>), (<&>))
import Phoenix.Internal.Message as Message exposing (Message)
import Phoenix.Internal.Socket as InternalSocket exposing (InternalSocket)
import Phoenix.Channel as Channel exposing (Channel)
import Phoenix.Internal.Channel as InternalChannel exposing (InternalChannel)
import Phoenix.Socket as Socket exposing (Socket)
import Phoenix.Internal.Socket as InternalSocket exposing (InternalSocket)
import Phoenix.Helpers as Helpers exposing ((&>), (<&>))
import Phoenix.Push as Push exposing (Push)


Expand Down
4 changes: 2 additions & 2 deletions src/Phoenix/Internal/Channel.elm
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ module Phoenix.Internal.Channel exposing (..)

import Dict exposing (Dict)
import Json.Decode as Decode exposing (Value)
import Phoenix.Helpers as Helpers
import Phoenix.Channel as Channel
import Phoenix.Internal.Helpers as Helpers
import Phoenix.Internal.Message as Message exposing (Message)
import Phoenix.Channel as Channel


{-| The current channel state. This is completely handled by the effect manager.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Phoenix.Helpers exposing (..)
module Phoenix.Internal.Helpers exposing (..)

import Json.Decode as Decode exposing (Value)
import Dict exposing (Dict)
Expand Down
4 changes: 2 additions & 2 deletions src/Phoenix/Internal/Message.elm
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module Phoenix.Internal.Message exposing (..)

import Phoenix.Push as Push exposing (Push)
import Json.Encode as JE
import Json.Decode as JD exposing (Value)
import Json.Encode as JE
import Phoenix.Push as Push exposing (Push)


type alias Message =
Expand Down

0 comments on commit 7d12630

Please sign in to comment.