2018-10-13 19:48:42 -07:00
|
|
|
from .trickortreat import TrickOrTreat
|
|
|
|
|
|
2020-08-26 17:57:43 +01:00
|
|
|
__red_end_user_data_statement__ = (
|
|
|
|
|
"This cog does not persistently store end user data. "
|
|
|
|
|
"This cog does store discord IDs as needed for operation. "
|
|
|
|
|
"This cog does store user stats for the cog such as their score. "
|
|
|
|
|
"Users may remove their own content without making a data removal request."
|
|
|
|
|
"This cog does not support data requests, "
|
|
|
|
|
"but will respect deletion requests."
|
|
|
|
|
)
|
|
|
|
|
|
2018-10-13 19:48:42 -07:00
|
|
|
|
|
|
|
|
def setup(bot):
|
|
|
|
|
bot.add_cog(TrickOrTreat(bot))
|