8 lines
No EOL
168 B
Python
8 lines
No EOL
168 B
Python
"""
|
|
Core functionality blueprint for the NetViz application.
|
|
"""
|
|
from flask import Blueprint
|
|
|
|
core_bp = Blueprint("core", __name__)
|
|
|
|
from app.core import routes # noqa |