From 5d65d1ea5121d05c98b3c487570fea4eb6bda5da Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Mon, 26 May 2025 18:52:55 +0530 Subject: [PATCH] common: make `NetworkState` public --- .../src/main/kotlin/dev/msfjarvis/claw/common/NetworkState.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/kotlin/dev/msfjarvis/claw/common/NetworkState.kt b/common/src/main/kotlin/dev/msfjarvis/claw/common/NetworkState.kt index a61d1615..7074bf10 100644 --- a/common/src/main/kotlin/dev/msfjarvis/claw/common/NetworkState.kt +++ b/common/src/main/kotlin/dev/msfjarvis/claw/common/NetworkState.kt @@ -6,7 +6,7 @@ */ package dev.msfjarvis.claw.common -internal sealed class NetworkState { +sealed class NetworkState { class Success(val data: T) : NetworkState() class Error(val error: Throwable, val description: String) : NetworkState()