1"""Client library for Bose Soundtouch speakers.""" 2 3__version__ = "0.1.0" 4 5from .client import SoundtouchDevice 6from .client.session_configuration import SessionConfiguration 7 8__all__ = ["SessionConfiguration", "SoundtouchDevice"] 9