mirror of
https://github.com/langgenius/dify.git
synced 2025-11-10 08:21:29 +00:00
29 lines
560 B
Python
29 lines
560 B
Python
from flask import Blueprint
|
|
from flask_restx import Namespace
|
|
|
|
from libs.external_api import ExternalApi
|
|
|
|
bp = Blueprint("files", __name__, url_prefix="/files")
|
|
|
|
api = ExternalApi(
|
|
bp,
|
|
version="1.0",
|
|
title="Files API",
|
|
description="API for file operations including upload and preview",
|
|
)
|
|
|
|
files_ns = Namespace("files", description="File operations", path="/")
|
|
|
|
from . import image_preview, tool_files, upload
|
|
|
|
api.add_namespace(files_ns)
|
|
|
|
__all__ = [
|
|
"api",
|
|
"bp",
|
|
"files_ns",
|
|
"image_preview",
|
|
"tool_files",
|
|
"upload",
|
|
]
|