diff options
author | Ben Sima <ben@bsima.me> | 2020-04-15 10:06:24 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-04-15 10:07:02 -0700 |
commit | afa9d701538b9e56622a0bfdf8e04aa358c9cd82 (patch) | |
tree | dee95c3955b3fe3d11e80d89823660d28eee0587 /Biz/Ibb/Client.hs | |
parent | f4b8c0df041b063c0b47d2ec6c818a9c202fd833 (diff) |
Reformatting
Now I'm using ormolu instead of brittany for Haskell formatting
now. Figured I should just make all of these big changes at once.
Diffstat (limited to 'Biz/Ibb/Client.hs')
-rw-r--r-- | Biz/Ibb/Client.hs | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/Biz/Ibb/Client.hs b/Biz/Ibb/Client.hs index e40ff36..89e0ffc 100644 --- a/Biz/Ibb/Client.hs +++ b/Biz/Ibb/Client.hs @@ -16,23 +16,25 @@ -- : dep ghcjs-base module Biz.Ibb.Client where -import Alpha -import Biz.Ibb.Core ( Action(..) - , see - , init - ) -import Biz.Ibb.Move ( move ) -import Miso ( App(..) - , defaultEvents - , miso - ) +import Alpha +import Biz.Ibb.Core + ( Action (..), + init, + see, + ) +import Biz.Ibb.Move (move) +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 +main = miso $ \u -> App {model = init u, ..} + where + initialAction = FetchPeople + update = move + view = see + events = defaultEvents + subs = [] + mountPoint = Nothing |