Coverage for youversion/clients/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.14.3, created at 2026-06-26 11:31 +0100

1"""Client implementations for YouVersion Bible API.""" 

2 

3from .async_client import AsyncClient 

4from .sync_client import SyncClient 

5 

6__all__ = ["AsyncClient", "SyncClient"]