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

20 lines
334 B
Python
Raw Normal View History

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