2017-06-25 04:45:03 +00:00
|
|
|
module Main exposing (..)
|
2017-06-02 05:47:44 +00:00
|
|
|
|
2017-06-25 04:45:03 +00:00
|
|
|
import Html
|
|
|
|
import Init.All
|
|
|
|
import Subscriptions exposing (subscriptions)
|
|
|
|
import Updates.All exposing (update)
|
|
|
|
import Views.Body exposing (view)
|
|
|
|
import Types exposing (Model, Msg)
|
2017-06-17 06:15:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
main : Program Never Model Msg
|
2017-06-02 05:47:44 +00:00
|
|
|
main =
|
2017-06-25 04:45:03 +00:00
|
|
|
Html.program
|
|
|
|
{ init = ( Init.All.init, Cmd.none )
|
|
|
|
, view = view
|
|
|
|
, update = update
|
|
|
|
, subscriptions = subscriptions
|
|
|
|
}
|