diff options
author | Joris Guyonvarch | 2015-05-10 13:06:08 +0200 |
---|---|---|
committer | Joris Guyonvarch | 2015-05-10 13:06:08 +0200 |
commit | 1f06679a739ba0be3b6b91c10bfd762a06c9573a (patch) | |
tree | 060353b47ddb4e2ad1f366015d70a0d712149c23 /src/Model/Model.elm | |
parent | cf26834c717043685866b47eb95bcd8d1299a78b (diff) |
Migrationg to Elm 0.15
Diffstat (limited to 'src/Model/Model.elm')
-rw-r--r-- | src/Model/Model.elm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Model/Model.elm b/src/Model/Model.elm index c45300b..a660b16 100644 --- a/src/Model/Model.elm +++ b/src/Model/Model.elm @@ -4,15 +4,15 @@ module Model.Model , numberOfTimers ) where -import Dict (Dict) +import Dict exposing (Dict) import Dict -import Time (Time) +import Time exposing (Time) import List -import Model.Timer (..) -import Model.Edition.Edition (..) -import Model.Id (..) -import Model.IdGenerator (..) +import Model.Timer exposing (..) +import Model.Edition.Edition exposing (..) +import Model.Id exposing (..) +import Model.IdGenerator exposing (..) type alias Model = { currentTime : Time |