microblog/app/api/__init__.py

6 lines
104 B
Python
Raw Normal View History

from flask import Blueprint
bp = Blueprint('api', __name__)
from app.api import users, errors, tokens