Skip to content
This repository was archived by the owner on Jul 19, 2022. It is now read-only.

Commit ed9f8f8

Browse files
committed
Separate UnisonLocal and UnisonShare Apps
1 parent 27eb2eb commit ed9f8f8

File tree

6 files changed

+1046
-7
lines changed

6 files changed

+1046
-7
lines changed

src/UnisonLocal.elm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module UnisonLocal exposing (..)
22

3-
import App
43
import Browser
54
import Env exposing (Flags)
6-
import PreApp
5+
import UnisonLocal.App as App
6+
import UnisonLocal.PreApp as PreApp
77

88

99
main : Program Flags PreApp.Model PreApp.Msg

src/App.elm renamed to src/UnisonLocal/App.elm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module App exposing (..)
1+
module UnisonLocal.App exposing (..)
22

33
import Api
44
import Browser

src/PreApp.elm renamed to src/UnisonLocal/PreApp.elm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
module PreApp exposing (..)
1+
module UnisonLocal.PreApp exposing (..)
22

33
import Api exposing (ApiBasePath(..), ApiRequest)
4-
import App
54
import Browser
65
import Browser.Navigation as Nav
76
import Env exposing (Flags)
@@ -10,6 +9,7 @@ import Html
109
import Http
1110
import Perspective exposing (Perspective, PerspectiveParams)
1211
import Route exposing (Route)
12+
import UnisonLocal.App as App
1313
import Url exposing (Url)
1414

1515

src/UnisonShare.elm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module UnisonShare exposing (..)
22

3-
import App
43
import Browser
54
import Env exposing (Flags)
6-
import PreApp
5+
import UnisonShare.App as App
6+
import UnisonShare.PreApp as PreApp
77

88

99
main : Program Flags PreApp.Model PreApp.Msg

0 commit comments

Comments
 (0)