25 lines
568 B
Python
25 lines
568 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)
|