mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-26 10:41:14 +00:00
12 lines
500 B
Python
12 lines
500 B
Python
"""Shared dependencies for mixin modules.
|
|
|
|
This module is the single import point for base classes and utilities that
|
|
sibling mixin modules need (e.g. ``BaseAlchemyDB``, ``read_retry``).
|
|
Centralising the import here means every mixin can do
|
|
``from .base import BaseAlchemyDB, read_retry`` instead of reaching up to
|
|
the parent package, keeping coupling explicit and consistent.
|
|
"""
|
|
|
|
from skyvern.forge.sdk.db.base_alchemy_db import BaseAlchemyDB, read_retry
|
|
|
|
__all__ = ["BaseAlchemyDB", "read_retry"]
|