Spaces:
Build error
Build error
File size: 191 Bytes
a8b3f00 |
1 2 3 4 5 6 7 8 9 |
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
|