14 lines
324 B
Python
14 lines
324 B
Python
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))
|