selfprivacy-rest-api/selfprivacy_api/resources/services/__init__.py

20 lines
334 B
Python
Raw Normal View History

2021-11-16 18:14:01 +02:00
#!/usr/bin/env python3
"""Services management module"""
2021-11-11 20:31:28 +02:00
from flask import Blueprint
from flask_restful import Api
from . import (
bitwarden,
gitea,
mailserver,
main,
nextcloud,
ocserv,
pleroma,
restic,
ssh,
)
2021-11-16 18:14:01 +02:00
services = Blueprint("services", __name__, url_prefix="/services")
api = Api(services)