Files
matrix-vona/vona/custom/__init__.py
2025-10-13 15:44:57 -04:00

23 lines
562 B
Python

from flask import Blueprint
custom = Blueprint("custom", __name__)
# This implements non-standard
# endpoints created by other
# homeserver implementations.
from .hammerhead import hammerhead
from .conduwuit import conduwuit
from .dendrite import dendrite
from .telodendria import telo
from .synapse import synapse
from .citadel import citadel
custom.register_blueprint(hammerhead)
custom.register_blueprint(conduwuit)
custom.register_blueprint(dendrite)
custom.register_blueprint(synapse)
custom.register_blueprint(citadel)
custom.register_blueprint(telo)