From 53c26d656f975f93319dd432e409c1ea740ce06d Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 22 Jan 2026 08:40:59 +0800 Subject: Rename subcmd module to cmd and update references --- templates/_registry.rs.template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'templates') diff --git a/templates/_registry.rs.template b/templates/_registry.rs.template index 0c6d0d5..fd6f779 100644 --- a/templates/_registry.rs.template +++ b/templates/_registry.rs.template @@ -1,13 +1,13 @@ // Auto generated by build.rs -use crate::subcmd::cmd::{JVCommand, JVCommandContext}; -use crate::subcmd::errors::CmdProcessError; +use crate::cmd::cmd_system::{JVCommand, JVCommandContext}; +use crate::cmd::errors::CmdProcessError; <> /// Input parameters, execute a command node pub async fn jv_cmd_process_node( node: &str, args: Vec, ctx: JVCommandContext -) -> Result { +) -> Result { match node { // PROCESS // -- TEMPLATE START -- -- cgit