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