mirror of
https://github.com/facefusion/facefusion-comfyui.git
synced 2026-04-23 01:26:00 +02:00
15 lines
352 B
Python
15 lines
352 B
Python
from .core import SwapFaceImage, SwapFaceVideo
|
|
from .types import NodeClassMapping, NodeDisplayNameMapping
|
|
|
|
NODE_CLASS_MAPPINGS : NodeClassMapping =\
|
|
{
|
|
'SwapFaceImage': SwapFaceImage,
|
|
'SwapFaceVideo': SwapFaceVideo
|
|
}
|
|
|
|
NODE_DISPLAY_NAME_MAPPINGS : NodeDisplayNameMapping =\
|
|
{
|
|
'SwapFaceImage': 'Image Swap Face',
|
|
'SwapFaceVideo': 'Video Swap Face'
|
|
}
|