feat: add comfyui sdk

This commit is contained in:
imeepos
2025-08-08 13:48:38 +08:00
parent 763b4a975c
commit 5f6a302dfd
27 changed files with 4713 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
//! Template system for ComfyUI SDK
pub mod workflow_template;
pub mod workflow_instance;
pub mod template_manager;
// Re-export main types
pub use workflow_template::WorkflowTemplate;
pub use workflow_instance::WorkflowInstance;
pub use template_manager::TemplateManager;