4 lines
86 B
Python
4 lines
86 B
Python
|
from flask import Blueprint
|
||
|
panel = Blueprint('panel', __name__)
|
||
|
from . import routes
|