Coverage for src/integrify/lsim/__init__.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.9.2, created at 2025-09-01 02:22 +0000

1""" 

2Dokumentasiya: 

3 

4EN: https://mmzeynalli.notion.site/LSIM-1974f14f727e8029a3f5f9e4e556afe3?pvs=74 

5""" 

6 

7from .bulk.client import LSIMBulkSMSAsyncClient, LSIMBulkSMSClient, LSIMBulkSMSClientClass 

8from .bulk.env import VERSION as BULKSMS_VERSION 

9from .single.client import LSIMSingleSMSAsyncClient, LSIMSingleSMSClient, LSIMSingleSMSClientClass 

10from .single.env import VERSION as SINGLESMS_VERSION 

11 

12__all__ = [ 

13 'LSIMBulkSMSAsyncClient', 

14 'LSIMBulkSMSClient', 

15 'LSIMBulkSMSClientClass', 

16 'BULKSMS_VERSION', 

17 'LSIMSingleSMSAsyncClient', 

18 'LSIMSingleSMSClient', 

19 'LSIMSingleSMSClientClass', 

20 'SINGLESMS_VERSION', 

21]