forked from cswimr/SeaCogs
11 lines
233 B
Python
11 lines
233 B
Python
|
from .updatechecker import UpdateChecker
|
||
|
|
||
|
__red_end_user_data_statement__ = (
|
||
|
"This cog does not persistently store data or metadata about users."
|
||
|
)
|
||
|
|
||
|
|
||
|
async def setup(bot):
|
||
|
cog = UpdateChecker(bot)
|
||
|
await bot.add_cog(cog)
|