Ruby-Cogs/lottery/__init__.py
2025-05-23 02:30:00 -04:00

11 lines
261 B
Python

import json
from pathlib import Path
from .lottery import Lottery
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):
await bot.add_cog(Lottery(bot))