Add finished/

This commit is contained in:
Richard Feldman
2018-05-01 21:49:22 -04:00
parent 975a010c1f
commit f17c09108d
575 changed files with 79140 additions and 0 deletions

9
finished/src/Ports.elm Normal file
View File

@@ -0,0 +1,9 @@
port module Ports exposing (onSessionChange, storeSession)
import Json.Encode exposing (Value)
port storeSession : Maybe String -> Cmd msg
port onSessionChange : (Value -> msg) -> Sub msg