Move phantom Context type to Internal/Tools folder

pull/1/head
Bram van den Heuvel 2023-03-13 13:53:26 +01:00
parent e62b6a09c4
commit 81a591383f
3 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ type as a message to the Credentials to update certain information.
-}
import Internal.Api.Context as Context exposing (Context)
import Internal.Tools.Context as Context exposing (Context)
import Internal.Tools.Exceptions as X
import Task exposing (Task)

View File

@ -1,7 +1,7 @@
module Internal.Api.CredUpdate exposing (..)
import Internal.Api.Chain as Chain exposing (IdemChain, TaskChain)
import Internal.Api.Context as Context exposing (VB, VBA, VBAT)
import Internal.Tools.Context as Context exposing (VB, VBA, VBAT)
import Internal.Api.GetEvent.Main as GetEvent
import Internal.Api.Invite.Main as Invite
import Internal.Api.JoinedMembers.Main as JoinedMembers

View File

@ -1,4 +1,4 @@
module Internal.Api.Context exposing (..)
module Internal.Tools.Context exposing (..)
{-| This module hosts functions for the `Context` type.