From aa289997e3e83fd53b7289c476f10ccfcf56d861 Mon Sep 17 00:00:00 2001 From: Zaki Date: Thu, 12 Mar 2026 12:50:53 -0700 Subject: [PATCH] style: fix import ordering for routines module Co-Authored-By: Claude Opus 4.6 --- src/cli/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli/mod.rs b/src/cli/mod.rs index 44b6d5c8..652cac01 100644 --- a/src/cli/mod.rs +++ b/src/cli/mod.rs @@ -16,7 +16,6 @@ mod channels; mod completion; mod config; -mod routines; mod doctor; #[cfg(feature = "import")] pub mod import; @@ -25,6 +24,7 @@ pub mod memory; pub mod oauth_defaults; mod pairing; mod registry; +mod routines; mod service; mod skills; pub mod status; @@ -33,7 +33,6 @@ mod tool; pub use channels::{ChannelsCommand, run_channels_command}; pub use completion::Completion; pub use config::{ConfigCommand, run_config_command}; -pub use routines::{RoutinesCommand, run_routines_command}; pub use doctor::run_doctor_command; #[cfg(feature = "import")] pub use import::{ImportCommand, run_import_command}; @@ -42,6 +41,7 @@ pub use memory::MemoryCommand; pub use memory::run_memory_command_with_db; pub use pairing::{PairingCommand, run_pairing_command, run_pairing_command_with_store}; pub use registry::{RegistryCommand, run_registry_command}; +pub use routines::{RoutinesCommand, run_routines_command}; pub use service::{ServiceCommand, run_service_command}; pub use skills::{SkillsCommand, run_skills_command}; pub use status::run_status_command;