summaryrefslogtreecommitdiff
path: root/com/influencedbybooks/aero.hs
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2019-11-02 15:33:13 -0700
committerBen Sima <ben@bsima.me>2019-11-02 15:33:13 -0700
commit9d114cfc773171b0a95bd4d2c39f1bb0eb783c8d (patch)
tree20766a760ed0141cf39153565e8552f6739c632d /com/influencedbybooks/aero.hs
parentd2a37f5de160160eadbacd7b8dc2567f78a0543d (diff)
rename everything back to caps to appease ghc
Diffstat (limited to 'com/influencedbybooks/aero.hs')
-rw-r--r--com/influencedbybooks/aero.hs21
1 files changed, 0 insertions, 21 deletions
diff --git a/com/influencedbybooks/aero.hs b/com/influencedbybooks/aero.hs
deleted file mode 100644
index 63066c5..0000000
--- a/com/influencedbybooks/aero.hs
+++ /dev/null
@@ -1,21 +0,0 @@
-{-# LANGUAGE OverloadedStrings #-}
-{-# LANGUAGE RecordWildCards #-}
-{-# LANGUAGE NoImplicitPrelude #-}
-
--- | Front-end
-module Com.Influencedbybooks.Aero where
-
-import Com.Simatime.Alpha
-import Com.Influencedbybooks.Move (move)
-import Com.Influencedbybooks.Core (Action(..), see, init)
-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