mirror of
https://github.com/langgenius/dify.git
synced 2025-08-24 17:18:37 +00:00
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.",
|
|
)
|