From e3886ff2edd3e11608ca5793af369f320cb97406 Mon Sep 17 00:00:00 2001 From: slhafzjw Date: Wed, 25 Feb 2026 14:50:53 +0800 Subject: [PATCH] refactor(layout): organize sources into web script cli domains --- src/main/kotlin/work/slhaf/hub/{ => cli}/CliHost.kt | 0 src/main/kotlin/work/slhaf/hub/{ => script}/ScriptEngine.kt | 0 .../kotlin/work/slhaf/hub/{ => script}/ScriptMetadataEngine.kt | 0 src/main/kotlin/work/slhaf/hub/{ => script}/ScriptRuntime.kt | 0 src/main/kotlin/work/slhaf/hub/{ => script}/SimpleScriptDef.kt | 0 src/main/kotlin/work/slhaf/hub/{ => web}/WebHost.kt | 0 src/main/kotlin/work/slhaf/hub/{ => web}/WebRoutes.kt | 0 src/main/kotlin/work/slhaf/hub/{ => web}/WebScriptService.kt | 0 src/main/kotlin/work/slhaf/hub/{ => web}/WebSecurity.kt | 0 .../kotlin/work/slhaf/hub/{ => web}/WebAuthAndScriptApiTest.kt | 0 src/test/kotlin/work/slhaf/hub/{ => web}/WebHostTestSupport.kt | 0 src/test/kotlin/work/slhaf/hub/{ => web}/WebRunApiTest.kt | 0 src/test/kotlin/work/slhaf/hub/{ => web}/WebSubTokenApiTest.kt | 0 13 files changed, 0 insertions(+), 0 deletions(-) rename src/main/kotlin/work/slhaf/hub/{ => cli}/CliHost.kt (100%) rename src/main/kotlin/work/slhaf/hub/{ => script}/ScriptEngine.kt (100%) rename src/main/kotlin/work/slhaf/hub/{ => script}/ScriptMetadataEngine.kt (100%) rename src/main/kotlin/work/slhaf/hub/{ => script}/ScriptRuntime.kt (100%) rename src/main/kotlin/work/slhaf/hub/{ => script}/SimpleScriptDef.kt (100%) rename src/main/kotlin/work/slhaf/hub/{ => web}/WebHost.kt (100%) rename src/main/kotlin/work/slhaf/hub/{ => web}/WebRoutes.kt (100%) rename src/main/kotlin/work/slhaf/hub/{ => web}/WebScriptService.kt (100%) rename src/main/kotlin/work/slhaf/hub/{ => web}/WebSecurity.kt (100%) rename src/test/kotlin/work/slhaf/hub/{ => web}/WebAuthAndScriptApiTest.kt (100%) rename src/test/kotlin/work/slhaf/hub/{ => web}/WebHostTestSupport.kt (100%) rename src/test/kotlin/work/slhaf/hub/{ => web}/WebRunApiTest.kt (100%) rename src/test/kotlin/work/slhaf/hub/{ => web}/WebSubTokenApiTest.kt (100%) diff --git a/src/main/kotlin/work/slhaf/hub/CliHost.kt b/src/main/kotlin/work/slhaf/hub/cli/CliHost.kt similarity index 100% rename from src/main/kotlin/work/slhaf/hub/CliHost.kt rename to src/main/kotlin/work/slhaf/hub/cli/CliHost.kt diff --git a/src/main/kotlin/work/slhaf/hub/ScriptEngine.kt b/src/main/kotlin/work/slhaf/hub/script/ScriptEngine.kt similarity index 100% rename from src/main/kotlin/work/slhaf/hub/ScriptEngine.kt rename to src/main/kotlin/work/slhaf/hub/script/ScriptEngine.kt diff --git a/src/main/kotlin/work/slhaf/hub/ScriptMetadataEngine.kt b/src/main/kotlin/work/slhaf/hub/script/ScriptMetadataEngine.kt similarity index 100% rename from src/main/kotlin/work/slhaf/hub/ScriptMetadataEngine.kt rename to src/main/kotlin/work/slhaf/hub/script/ScriptMetadataEngine.kt diff --git a/src/main/kotlin/work/slhaf/hub/ScriptRuntime.kt b/src/main/kotlin/work/slhaf/hub/script/ScriptRuntime.kt similarity index 100% rename from src/main/kotlin/work/slhaf/hub/ScriptRuntime.kt rename to src/main/kotlin/work/slhaf/hub/script/ScriptRuntime.kt diff --git a/src/main/kotlin/work/slhaf/hub/SimpleScriptDef.kt b/src/main/kotlin/work/slhaf/hub/script/SimpleScriptDef.kt similarity index 100% rename from src/main/kotlin/work/slhaf/hub/SimpleScriptDef.kt rename to src/main/kotlin/work/slhaf/hub/script/SimpleScriptDef.kt diff --git a/src/main/kotlin/work/slhaf/hub/WebHost.kt b/src/main/kotlin/work/slhaf/hub/web/WebHost.kt similarity index 100% rename from src/main/kotlin/work/slhaf/hub/WebHost.kt rename to src/main/kotlin/work/slhaf/hub/web/WebHost.kt diff --git a/src/main/kotlin/work/slhaf/hub/WebRoutes.kt b/src/main/kotlin/work/slhaf/hub/web/WebRoutes.kt similarity index 100% rename from src/main/kotlin/work/slhaf/hub/WebRoutes.kt rename to src/main/kotlin/work/slhaf/hub/web/WebRoutes.kt diff --git a/src/main/kotlin/work/slhaf/hub/WebScriptService.kt b/src/main/kotlin/work/slhaf/hub/web/WebScriptService.kt similarity index 100% rename from src/main/kotlin/work/slhaf/hub/WebScriptService.kt rename to src/main/kotlin/work/slhaf/hub/web/WebScriptService.kt diff --git a/src/main/kotlin/work/slhaf/hub/WebSecurity.kt b/src/main/kotlin/work/slhaf/hub/web/WebSecurity.kt similarity index 100% rename from src/main/kotlin/work/slhaf/hub/WebSecurity.kt rename to src/main/kotlin/work/slhaf/hub/web/WebSecurity.kt diff --git a/src/test/kotlin/work/slhaf/hub/WebAuthAndScriptApiTest.kt b/src/test/kotlin/work/slhaf/hub/web/WebAuthAndScriptApiTest.kt similarity index 100% rename from src/test/kotlin/work/slhaf/hub/WebAuthAndScriptApiTest.kt rename to src/test/kotlin/work/slhaf/hub/web/WebAuthAndScriptApiTest.kt diff --git a/src/test/kotlin/work/slhaf/hub/WebHostTestSupport.kt b/src/test/kotlin/work/slhaf/hub/web/WebHostTestSupport.kt similarity index 100% rename from src/test/kotlin/work/slhaf/hub/WebHostTestSupport.kt rename to src/test/kotlin/work/slhaf/hub/web/WebHostTestSupport.kt diff --git a/src/test/kotlin/work/slhaf/hub/WebRunApiTest.kt b/src/test/kotlin/work/slhaf/hub/web/WebRunApiTest.kt similarity index 100% rename from src/test/kotlin/work/slhaf/hub/WebRunApiTest.kt rename to src/test/kotlin/work/slhaf/hub/web/WebRunApiTest.kt diff --git a/src/test/kotlin/work/slhaf/hub/WebSubTokenApiTest.kt b/src/test/kotlin/work/slhaf/hub/web/WebSubTokenApiTest.kt similarity index 100% rename from src/test/kotlin/work/slhaf/hub/WebSubTokenApiTest.kt rename to src/test/kotlin/work/slhaf/hub/web/WebSubTokenApiTest.kt