From 3206412565d8b915ef73cafb5b1c8f427322dcdb Mon Sep 17 00:00:00 2001 From: Swordsteel Date: Tue, 26 Nov 2024 10:07:15 +0100 Subject: [PATCH] add device registry Identity --- .../ltd/hlaeja/library/deviceRegistry/Identity.kt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/main/kotlin/ltd/hlaeja/library/deviceRegistry/Identity.kt diff --git a/src/main/kotlin/ltd/hlaeja/library/deviceRegistry/Identity.kt b/src/main/kotlin/ltd/hlaeja/library/deviceRegistry/Identity.kt new file mode 100644 index 0000000..d4baba4 --- /dev/null +++ b/src/main/kotlin/ltd/hlaeja/library/deviceRegistry/Identity.kt @@ -0,0 +1,12 @@ +package ltd.hlaeja.library.deviceRegistry + +import java.util.UUID + +object Identity { + + data class Response( + val client: UUID, + val node: UUID, + val device: UUID, + ) +}