mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-13 07:40:50 +08:00
19 lines
308 B
Python
19 lines
308 B
Python
class Note:
|
|
def __init__(self):
|
|
pass
|
|
|
|
@classmethod
|
|
def INPUT_TYPES(s):
|
|
return {"required": {"text": ("STRING", {"multiline": True})}}
|
|
|
|
RETURN_TYPES = ()
|
|
FUNCTION = "Note"
|
|
|
|
OUTPUT_NODE = False
|
|
|
|
CATEGORY = "silver_custom"
|
|
|
|
NODE_CLASS_MAPPINGS = {
|
|
"Note": Note
|
|
}
|