2018-01-27 19:28:58 -08:00
|
|
|
from .away import Away
|
|
|
|
|
|
2020-08-26 17:57:43 +01:00
|
|
|
__red_end_user_data_statement__ = (
|
|
|
|
|
"This cog stores data provided by users "
|
|
|
|
|
"for the express purpose of redisplaying. "
|
|
|
|
|
"It does not store user data which was not "
|
|
|
|
|
"provided through a command. "
|
|
|
|
|
"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-01-27 19:28:58 -08:00
|
|
|
|
2018-08-19 20:23:44 -07:00
|
|
|
def setup(bot):
|
|
|
|
|
bot.add_cog(Away(bot))
|