Files
matrix-vona/vona/custom/__init__.py

18 lines
389 B
Python

from flask import Blueprint
custom = Blueprint("custom", __name__)
# This implements custom endpoints
# used by other homeserver
# implementations. They do not start
# with /_matrix/
from .conduwuit import conduwuit
from .dendrite import dendrite
from .synapse import synapse
custom.register_blueprint(conduwuit)
custom.register_blueprint(dendrite)
custom.register_blueprint(synapse)