eze-cogs/template/__init__.py

14 lines
324 B
Python
Raw Permalink Normal View History

2024-03-02 18:20:11 +00:00
import json
from pathlib import Path
from redbot.core.bot import Red
from .template import TemplateManager
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(TemplateManager(bot))