Files
ss-tools/superset_tool/models.py
Volobuev Andrey 992073d2f5 init
2025-04-01 15:20:19 +03:00

10 lines
280 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from pydantic import BaseModel
class SupersetConfig(BaseModel):
base_url: str
auth: dict # Словарь с параметрами аутентификации
verify_ssl: bool = True
timeout: int = 30
class DatabaseConfig(BaseModel):
database_config: dict