summaryrefslogtreecommitdiff
path: root/Com/InfluencedByBooks/Aero.hs
blob: bd996c681ded8e5432766e982b459436852c7d2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE NoImplicitPrelude #-}

-- | Front-end
module Com.InfluencedByBooks.Aero where

import Com.InfluencedByBooks.Core (Action(..), see, init)
import Com.InfluencedByBooks.Move (move)
import Com.Simatime.Alpha
import Miso (App(..), defaultEvents, miso)

main :: IO ()
main = miso $ \u -> App { model = init u, .. }
  where
    initialAction = FetchPeople
    update = move
    view   = see
    events = defaultEvents
    subs   = []
    mountPoint = Nothing