mirror of
https://github.com/nirvana-7777/script.service.ultimate.git
synced 2026-09-26 02:52:45 +02:00
12 lines
248 B
Python
12 lines
248 B
Python
# streaming_providers/providers/bhtelecom/__init__.py
|
|
"""
|
|
BH Telecom streaming provider
|
|
|
|
Provides access to BH Telecom's live TV streaming service.
|
|
"""
|
|
|
|
from .provider import BHTelecomProvider
|
|
|
|
__all__ = ["BHTelecomProvider"]
|
|
|
|
__version__ = "1.0.0" |