aboutsummaryrefslogtreecommitdiff
path: root/src/client/Model.elm
blob: 45fdf87439db80af415c39f04be7796dbea8f9f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module Model
  ( Model
  , initialModel
  ) where

import Time exposing (Time)

import Model.View exposing (..)

type alias Model =
  { view : View
  , currentTime : Time
  }

initialModel : Time -> Model
initialModel initialTime =
  { view = LoadingView
  , currentTime = initialTime
  }