File size: 170 Bytes
a8b3f00
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from flask import Blueprint

from libs.external_api import ExternalApi

bp = Blueprint("files", __name__)
api = ExternalApi(bp)


from . import image_preview, tool_files