Hotfix: imports in services module

pull/5/head
Inex Code 2021-11-16 18:19:31 +02:00
parent 447cc5ff55
commit 6df4204ca1
1 changed files with 3 additions and 3 deletions

View File

@ -3,6 +3,9 @@
from flask import Blueprint
from flask_restful import Api
services = Blueprint("services", __name__, url_prefix="/services")
api = Api(services)
from . import (
bitwarden,
gitea,
@ -14,6 +17,3 @@ from . import (
restic,
ssh,
)
services = Blueprint("services", __name__, url_prefix="/services")
api = Api(services)