Ruby-Cogs/repolist/__init__.py
Valerie 477974d53c
Some checks are pending
Run pre-commit / Run pre-commit (push) Waiting to run
Upload 2 Cogs & Update README
2025-05-23 01:30:53 -04:00

12 lines
303 B
Python

import json
from pathlib import Path
from redbot.core.bot import Red
from .repolist import RepoList
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: Red) -> None:
await bot.add_cog(RepoList(bot))