9 lines
191 B
Python
Raw Normal View History

2024-04-18 17:33:32 +08:00
from flask import Blueprint
from libs.external_api import ExternalApi
bp = Blueprint('inner_api', __name__, url_prefix='/inner/api')
api = ExternalApi(bp)
from .workspace import workspace