2023-09-26 20:00:26 +00:00
|
|
|
# pylint: disable=wrong-import-position,cyclic-import
|
|
|
|
from flask_smorest import Blueprint
|
|
|
|
|
2023-09-26 20:54:40 +00:00
|
|
|
routes = Blueprint("interface", "interface", url_prefix="/", description="")
|
2023-09-26 20:00:26 +00:00
|
|
|
|
2023-09-26 20:54:40 +00:00
|
|
|
from . import version, openapi, health # avoids circular imports problem
|