Files
unstable-cogs/translator/__init__.py
Unstable Kitsune d3ee48112a feat: add translator cog for fantasy languages
Implements commands for translating text into roleplay languages like Valspiren, Elvish, and Draconic, ported from a web application.
2025-09-21 04:22:21 -04:00

4 lines
96 B
Python

from .translator import Translator
async def setup(bot):
await bot.add_cog(Translator(bot))