mirror of
https://github.com/langgenius/dify.git
synced 2025-11-17 20:05:16 +00:00
13 lines
260 B
Python
13 lines
260 B
Python
|
|
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",
|
||
|
|
]
|