mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-08 10:26:50 +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.",
|
|
)
|