From c790672cc244ac4caba1bda3572829a6c6862891 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Sun, 27 Oct 2019 09:48:52 -0700 Subject: move everything to namespace directories --- com/influencedbybooks/aero.hs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 com/influencedbybooks/aero.hs (limited to 'com/influencedbybooks/aero.hs') diff --git a/com/influencedbybooks/aero.hs b/com/influencedbybooks/aero.hs new file mode 100644 index 0000000..92d071d --- /dev/null +++ b/com/influencedbybooks/aero.hs @@ -0,0 +1,21 @@ +{-# 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 -- cgit v1.2.3