Skip to content

Commit

Permalink
Update VolatileHost module name
Browse files Browse the repository at this point in the history
Reflect the newer scope of this module - not anymore limited to Elm make.
  • Loading branch information
Viir committed Mar 15, 2021
1 parent 4a677ba commit 549190c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions implement/example-apps/elm-editor/src/Backend/Main.elm
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ module Backend.Main exposing
, interfaceToHost_processEvent
)

import Backend.ElmMakeVolatileHost as ElmMakeVolatileHost
import Backend.InterfaceToHost as InterfaceToHost
import Backend.Route
import Backend.VolatileHost as VolatileHost
import Base64
import Bytes.Encode
import Common
Expand Down Expand Up @@ -304,7 +304,7 @@ tasksFromState state =
tasksToEnsureEnoughVolatileHostsCreated =
if List.length state.volatileHostsIds < parallelVolatileHostsCount then
[ { taskId = "create-vhost"
, task = InterfaceToHost.CreateVolatileHost { script = ElmMakeVolatileHost.volatileHostScript }
, task = InterfaceToHost.CreateVolatileHost { script = VolatileHost.volatileHostScript }
}
]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Backend.ElmMakeVolatileHost exposing
module Backend.VolatileHost exposing
( jsonDecodeResponseStructure
, requestToVolatileHost
, volatileHostScript
Expand Down

0 comments on commit 549190c

Please sign in to comment.