9 lines
111 B
Python
9 lines
111 B
Python
"""api.__init__
|
|
"""
|
|
|
|
from flask import Blueprint
|
|
|
|
bp = Blueprint("api", __name__)
|
|
|
|
from app.api import sco_api
|