mirror of
https://github.com/langgenius/dify.git
synced 2026-01-10 16:34:15 +00:00
8 lines
215 B
Python
8 lines
215 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
|