mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-11 14:02:37 +08:00
9 lines
165 B
JavaScript
9 lines
165 B
JavaScript
import { LiteGraph, LGraph } from "../lib/litegraph.core.js"
|
|
|
|
export default class ComfyGraph extends LGraph {
|
|
constructor(app) {
|
|
super();
|
|
this.app = app;
|
|
}
|
|
}
|