Files
matrix-vona/vona/custom/__init__.py
2025-10-12 23:39:25 -04:00

22 lines
524 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 .hammerhead import hammerhead
from .conduwuit import conduwuit
from .dendrite import dendrite
from .telodendria import telo
from .synapse import synapse
custom.register_blueprint(hammerhead)
custom.register_blueprint(conduwuit)
custom.register_blueprint(dendrite)
custom.register_blueprint(synapse)
custom.register_blueprint(telo)