ScoDoc/app/api/__init__.py

9 lines
111 B
Python
Raw Normal View History

2021-09-09 12:49:23 +02:00
"""api.__init__
"""
from flask import Blueprint
bp = Blueprint("api", __name__)
from app.api import sco_api