7 lines
114 B
Python
7 lines
114 B
Python
# -*- coding: UTF-8 -*
|
|
from flask import Blueprint
|
|
|
|
bp = Blueprint("main", __name__)
|
|
|
|
from app.main import routes
|