aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHayleigh Thompson <me@hayleigh.dev>2024-02-18 10:44:24 +0000
committerHayleigh Thompson <me@hayleigh.dev>2024-02-18 10:44:24 +0000
commit8128c25b6d8e597e5c652007f483c22047425c5c (patch)
tree40b74d4554a6f45546fd2fc27513ebf38792bd41 /src
parent811000903c3f90ac30ef71aabee5669dc5c5c732 (diff)
downloadlustre-8128c25b6d8e597e5c652007f483c22047425c5c.tar.gz
lustre-8128c25b6d8e597e5c652007f483c22047425c5c.zip
:truck: Move 'Patch' type into server module.
Diffstat (limited to 'src')
-rw-r--r--src/lustre/internals/runtime.gleam4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lustre/internals/runtime.gleam b/src/lustre/internals/runtime.gleam
index a907656..b0e264f 100644
--- a/src/lustre/internals/runtime.gleam
+++ b/src/lustre/internals/runtime.gleam
@@ -10,8 +10,8 @@ import gleam/option.{Some}
import gleam/otp/actor.{type Next, type StartError, Spec}
import gleam/result
import lustre/effect.{type Effect}
-import lustre/element.{type Element, type Patch}
-import lustre/internals/patch.{Diff, Init}
+import lustre/element.{type Element}
+import lustre/internals/patch.{type Patch, Diff, Init}
import lustre/internals/vdom
// TYPES -----------------------------------------------------------------------