2023-11-13 22:05:46 +08:00
|
|
|
# -*- coding:utf-8 -*-
|
|
|
|
from flask import Blueprint
|
|
|
|
from libs.external_api import ExternalApi
|
|
|
|
|
|
|
|
bp = Blueprint('files', __name__)
|
|
|
|
api = ExternalApi(bp)
|
|
|
|
|
|
|
|
|
|
|
|
from . import image_preview
|
2024-01-23 19:58:23 +08:00
|
|
|
from . import tool_files
|