Coverage for mindsdb / integrations / handlers / google_analytics_handler / __init__.py: 0%

14 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-21 00:36 +0000

1from mindsdb.integrations.libs.const import HANDLER_TYPE 

2from .__about__ import __version__ as version, __description__ as description 

3 

4try: 

5 from .google_analytics_handler import GoogleAnalyticsHandler as Handler 

6 

7 import_error = None 

8except Exception as e: 

9 Handler = None 

10 import_error = e 

11title = 'Google Analytics' 

12name = 'google_analytics' 

13type = HANDLER_TYPE.DATA 

14icon_path = 'icon.svg' 

15permanent = False 

16__all__ = [ 

17 'Handler', 'version', 'name', 'type', 'title', 'description', 'import_error', 'icon_path' 

18]