5 lines
86 B
Python
5 lines
86 B
Python
from flask import Blueprint
|
|
|
|
api_bp = Blueprint('api', __name__)
|
|
|
|
from . import routes |