6 lines
109 B
Python
6 lines
109 B
Python
from flask import Blueprint
|
|
|
|
|
|
bp = Blueprint("settings", __name__)
|
|
|
|
from . import routes # noqa: E402, F401
|