mirror of
https://github.com/langgenius/dify.git
synced 2026-03-27 09:09:54 +08:00
refactor(api): rename dify_graph to graphon (#34095)
This commit is contained in:
16
api/graphon/graph_engine/command_processing/__init__.py
Normal file
16
api/graphon/graph_engine/command_processing/__init__.py
Normal file
@ -0,0 +1,16 @@
|
||||
"""
|
||||
Command processing subsystem for graph engine.
|
||||
|
||||
This package handles external commands sent to the engine
|
||||
during execution.
|
||||
"""
|
||||
|
||||
from .command_handlers import AbortCommandHandler, PauseCommandHandler, UpdateVariablesCommandHandler
|
||||
from .command_processor import CommandProcessor
|
||||
|
||||
__all__ = [
|
||||
"AbortCommandHandler",
|
||||
"CommandProcessor",
|
||||
"PauseCommandHandler",
|
||||
"UpdateVariablesCommandHandler",
|
||||
]
|
||||
Reference in New Issue
Block a user