9 lines
191 B
Python
Raw Normal View History

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