mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-14 20:41:21 +08:00
99f40a9682
Signed-off-by: -LAN- <laipz8200@outlook.com>
10 lines
214 B
Python
10 lines
214 B
Python
from pydantic import Field
|
|
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class OpenDALStorageConfig(BaseSettings):
|
|
OPENDAL_SCHEME: str = Field(
|
|
default="fs",
|
|
description="OpenDAL scheme.",
|
|
)
|