dify
This commit is contained in:
12
dify/api/controllers/trigger/__init__.py
Normal file
12
dify/api/controllers/trigger/__init__.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from flask import Blueprint
|
||||
|
||||
# Create trigger blueprint
|
||||
bp = Blueprint("trigger", __name__, url_prefix="/triggers")
|
||||
|
||||
# Import routes after blueprint creation to avoid circular imports
|
||||
from . import trigger, webhook
|
||||
|
||||
__all__ = [
|
||||
"trigger",
|
||||
"webhook",
|
||||
]
|
||||
Reference in New Issue
Block a user