feat(tts): added new cog
All checks were successful
Actions / Lint Code (Ruff) (pull_request) Successful in 10s
Actions / Build Documentation (MkDocs) (pull_request) Successful in 14s

This commit is contained in:
SeaswimmerTheFsh 2024-02-19 18:35:44 -05:00
parent 57c7bce6cd
commit a2f61d697f
Signed by: cswimr
GPG key ID: B8953EC01E5C4063
3 changed files with 76 additions and 0 deletions

5
tts/__init__.py Normal file
View file

@ -0,0 +1,5 @@
from .tts import TTS
async def setup(bot):
await bot.add_cog(TTS(bot))