10 lines
192 B
Python
10 lines
192 B
Python
from .dalle import DallE
|
|
|
|
|
|
__red_end_user_data_statement__ = "This cog does not persistently store data or metadata about users."
|
|
|
|
|
|
async def setup(bot):
|
|
n = DallE(bot)
|
|
bot.add_cog(n)
|