forked from M-Labs/web2019
8 lines
120 B
Python
8 lines
120 B
Python
|
from flask import Blueprint
|
||
|
|
||
|
|
||
|
bp = Blueprint("api", __name__, url_prefix="/api")
|
||
|
|
||
|
|
||
|
from app.api import routes # nopep8
|