diff options
author | Joris Guyonvarch | 2015-07-18 15:19:48 +0200 |
---|---|---|
committer | Joris Guyonvarch | 2015-07-18 15:19:48 +0200 |
commit | 89dd4de13896f8e37d1bf133080eb881ab42b292 (patch) | |
tree | f7d8cc5f412355524ef5b3f128aa09fce89c0afa /src/client/Main.elm | |
parent | 0041c546869f0a7fd59a085cc75b481237b6c380 (diff) |
Adding login/logout functions thanks to a client session
Diffstat (limited to 'src/client/Main.elm')
-rw-r--r-- | src/client/Main.elm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/Main.elm b/src/client/Main.elm index 18a4aba..e112144 100644 --- a/src/client/Main.elm +++ b/src/client/Main.elm @@ -2,6 +2,8 @@ module Main ( main ) where +{-| @docs main -} + import Graphics.Element exposing (..) import Html exposing (Html) @@ -16,6 +18,8 @@ import Update exposing (Action(..), actions, updateModel) import View.Page exposing (renderPage) +{-| main -} + main : Signal Html main = Signal.map renderPage model |