You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

opendal_storage_config.py 214B

123456789
  1. from pydantic import Field
  2. from pydantic_settings import BaseSettings
  3. class OpenDALStorageConfig(BaseSettings):
  4. OPENDAL_SCHEME: str = Field(
  5. default="fs",
  6. description="OpenDAL scheme.",
  7. )