example-spa-elm-app/frontend/src/Ports.elm

14 lines
301 B
Elm
Raw Normal View History

2025-01-01 01:50:26 +00:00
port module Ports exposing (socket)
import Websockets
port webSocketCommand : Websockets.CommandPort msg
port webSocketEvent : Websockets.EventPort msg
socket : Websockets.Methods msg
socket =
Websockets.withPorts
{ command = webSocketCommand
, event = webSocketEvent
}