7 lines
242 B
Python
7 lines
242 B
Python
# pylint: disable=wrong-import-position,cyclic-import
|
|
from flask_smorest import Blueprint
|
|
|
|
routes = Blueprint("interface", "interface", url_prefix="/", description="")
|
|
|
|
from . import version, openapi, health # avoids circular imports problem
|