Ruby-Cogs/welcome/__init__.py

12 lines
271 B
Python

import json
from pathlib import Path
from .welcome import Welcome
with open(Path(__file__).parent / "info.json") as fp:
__red_end_user_data_statement__ = json.load(fp)["end_user_data_statement"]
async def setup(bot):
n = Welcome(bot)
await bot.add_cog(n)