(self)
| 27 | |
| 28 | class IdeogramHelperExtension(ComfyExtension): |
| 29 | async def get_node_list(self) -> list[type[io.ComfyNode]]: |
| 30 | return [ |
| 31 | IdeogramStudio, |
| 32 | IdeogramCaptionPreview, |
| 33 | IdeogramRefSync, |
| 34 | IdeogramJsonSync, |
| 35 | IdeogramOverride, |
| 36 | IdeogramElementOverride, |
| 37 | IdeogramElementAppend, |
| 38 | IdeogramOverrideList, |
| 39 | IdeogramPalette, |
| 40 | IdeogramExtras, |
| 41 | IdeogramBBoxSelect, |
| 42 | ] |
| 43 | |
| 44 | |
| 45 | async def comfy_entrypoint() -> IdeogramHelperExtension: |
nothing calls this directly
no outgoing calls
no test coverage detected