From 20f74f7bc118b917a3cb2a88afe83dfcb819a6a8 Mon Sep 17 00:00:00 2001 From: Warren Lo Date: Thu, 19 Mar 2026 00:31:48 +0800 Subject: [PATCH] Add ui module --- src/ui/mod.rs | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/ui/mod.rs diff --git a/src/ui/mod.rs b/src/ui/mod.rs new file mode 100644 index 0000000..2814409 --- /dev/null +++ b/src/ui/mod.rs @@ -0,0 +1,4 @@ +//! UI 模組 + +pub mod webview; +pub mod commands;