mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-06-01 11:20:36 +08: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.",
|
|
)
|