7 lines
244 B
Python
7 lines
244 B
Python
|
# pylint: disable=wrong-import-position,cyclic-import
|
||
|
from flask_smorest import Blueprint
|
||
|
|
||
|
routes = Blueprint("support-organizer", "support-organizer", url_prefix="/", description="")
|
||
|
|
||
|
from . import apiversion # avoids circular imports problem
|