summaryrefslogtreecommitdiff
path: root/templates/_registry.rs.template
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-01-22 08:40:59 +0800
committer魏曹先生 <1992414357@qq.com>2026-01-22 08:40:59 +0800
commit53c26d656f975f93319dd432e409c1ea740ce06d (patch)
tree22796b4e438655868e02954e5d2770ed676ccbb7 /templates/_registry.rs.template
parentaca8b408755f9041da9ee083c625de2a8d8c6785 (diff)
Rename subcmd module to cmd and update references
Diffstat (limited to 'templates/_registry.rs.template')
-rw-r--r--templates/_registry.rs.template6
1 files changed, 3 insertions, 3 deletions
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;
<<LINE>>
/// Input parameters, execute a command node
pub async fn jv_cmd_process_node(
node: &str,
args: Vec<String>,
ctx: JVCommandContext
-) -> Result<crate::subcmd::renderer::JVRenderResult, crate::subcmd::errors::CmdProcessError> {
+) -> Result<crate::cmd::renderer::JVRenderResult, crate::cmd::errors::CmdProcessError> {
match node {
// PROCESS
// -- TEMPLATE START --