summaryrefslogtreecommitdiff
blob: 5a9d843ef8ed3f4750a7c68d623c9d949a81f797 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import Html

import Model
import Event

import Init
import Subscriptions
import View
import Update

main : (Program Never Model.Type Event.Type)
main =
   (Html.program
      {
         init = Init.init,
         view = View.view,
         update = Update.update,
         subscriptions = Subscriptions.subscriptions
      }
   )