From b9db2eaa637e8b8b270b9f21bd84a7387eb0b592 Mon Sep 17 00:00:00 2001 From: Yehowshua Immanuel Date: Wed, 1 Jan 2025 01:48:55 -0500 Subject: [PATCH] added websocket dependencies --- frontend/elm.json | 1 + frontend/src/Main.elm | 1 + 2 files changed, 2 insertions(+) diff --git a/frontend/elm.json b/frontend/elm.json index 4217bec..c17e85d 100644 --- a/frontend/elm.json +++ b/frontend/elm.json @@ -10,6 +10,7 @@ "elm/core": "1.0.5", "elm/html": "1.0.0", "elm/url": "1.0.0", + "kageurufu/elm-websockets": "1.0.1", "mdgriffith/elm-ui": "1.1.8" }, "indirect": { diff --git a/frontend/src/Main.elm b/frontend/src/Main.elm index 70e403a..ca91721 100644 --- a/frontend/src/Main.elm +++ b/frontend/src/Main.elm @@ -9,6 +9,7 @@ import String exposing (right) import Browser.Navigation import Browser exposing (UrlRequest) import Html exposing (header) +import Ports -- internal imports import Body