|
@@ -0,0 +1,14 @@
|
|
|
+from logging import Logger
|
|
|
+from rollbot import as_command
|
|
|
+from rollbot.injection.util import Request
|
|
|
+
|
|
|
+from commands.tarot import tarot
|
|
|
+from commands.querying import inspire
|
|
|
+from commands.simple import inquire
|
|
|
+
|
|
|
+@as_command
|
|
|
+async def omen(req: Request, logger: Logger):
|
|
|
+ yield inquire()
|
|
|
+ yield tarot(False, False)
|
|
|
+ yield await inspire(req, logger)
|
|
|
+
|