mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-15 23:23:17 +00:00
18 lines
278 B
Python
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,
|
|
)
|