mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-05 02:53:11 +00:00
20 lines
334 B
Python
20 lines
334 B
Python
#!/usr/bin/env python3
|
|
"""Services management module"""
|
|
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,
|
|
)
|