summaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/shared/elm/Action')
-rw-r--r-- | src/shared/elm/Action/Ports.elm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/shared/elm/Action/Ports.elm b/src/shared/elm/Action/Ports.elm new file mode 100644 index 0000000..8da9bac --- /dev/null +++ b/src/shared/elm/Action/Ports.elm @@ -0,0 +1,6 @@ +port module Action.Ports exposing (..) + +port store_new_session : (String, String) -> (Cmd msg) +port reset_session : () -> (Cmd msg) +port connected: (() -> msg) -> (Sub msg) +port go_to : (String) -> (Cmd msg) |