from flask import ( Blueprint, ) 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 = Blueprint("custom", __name__) # This implements non-standard # endpoints created by other # homeserver implementations. custom.register_blueprint(hammerhead) custom.register_blueprint(conduwuit) custom.register_blueprint(dendrite) custom.register_blueprint(synapse) custom.register_blueprint(citadel) custom.register_blueprint(telo)