selfprivacy-rest-api/selfprivacy_api/resources/services/__init__.py
2021-11-11 20:31:28 +02:00

18 lines
278 B
Python

from flask import Blueprint
from flask_restful import Api
services = Blueprint("services", __name__, url_prefix="/services")
api = Api(services)
from . import (
bitwarden,
gitea,
mailserver,
main,
nextcloud,
ocserv,
pleroma,
restic,
ssh,
)