7 lines
174 B
Python
7 lines
174 B
Python
|
|
"""
|
||
|
|
Client module for microphone streaming
|
||
|
|
"""
|
||
|
|
from .mic_stream import MicrophoneStreamClient, list_audio_devices
|
||
|
|
|
||
|
|
__all__ = ["MicrophoneStreamClient", "list_audio_devices"]
|