mirror of
https://github.com/Nighthawk42/fulloch.git
synced 2026-08-30 08:42:26 +00:00
11 lines
189 B
Python
11 lines
189 B
Python
"""
|
|
Audio utilities package for Fulloch voice assistant.
|
|
|
|
Contains:
|
|
- beep_manager: Manages beep/notification playback
|
|
"""
|
|
|
|
from .beep_manager import BeepManager
|
|
|
|
__all__ = ["BeepManager"]
|