From 3fa08011d38b1d543044ee491cbc008d55306429 Mon Sep 17 00:00:00 2001 From: Arjun Satarkar Date: Thu, 21 Dec 2023 14:43:32 +0530 Subject: Add question_of_the_day --- question_of_the_day/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 question_of_the_day/__init__.py (limited to 'question_of_the_day/__init__.py') diff --git a/question_of_the_day/__init__.py b/question_of_the_day/__init__.py new file mode 100644 index 0000000..200f05b --- /dev/null +++ b/question_of_the_day/__init__.py @@ -0,0 +1,5 @@ +from .question_of_the_day import QuestionOfTheDay + + +async def setup(bot): + await bot.add_cog(QuestionOfTheDay(bot)) -- cgit v1.2.3-57-g22cb