Add ComfyUI Examples workflows to in-app templates (#2541)

Co-authored-by: jojodecayz <121620462+jojodecayz@users.noreply.github.com>
Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
bymyself
2025-02-15 14:15:56 -07:00
committed by GitHub
parent 00dceb880a
commit 77d3e0c45e
54 changed files with 21677 additions and 1160 deletions

View File

@@ -0,0 +1,16 @@
export interface TemplateInfo {
name: string
tutorialUrl?: string
mediaType: string
mediaSubtype: string
}
export interface WorkflowTemplates {
moduleName: string
templates: TemplateInfo[]
title: string
}
export interface TemplateGroup {
label: string
modules: WorkflowTemplates[]
}