Source code for harp_apps.storage.settings.blobs

from typing import Literal

from harp.config import Service


[docs] class BlobStorageSettings(Service): type: Literal["sql", "redis"] = "sql"