open source

This commit is contained in:
Ajay Raj 2023-03-28 00:15:34 -07:00
commit a93bfc1ec9
61 changed files with 4013 additions and 126 deletions

View file

@ -6,7 +6,7 @@ class BaseOutputDevice:
self.sampling_rate = sampling_rate
self.audio_encoding = audio_encoding
async def send_async(self, chunk):
async def send_async(self, chunk: bytes):
raise NotImplemented
async def maybe_send_mark_async(self, message):