I want to add a method to my minos.cqrs.Service
to be executed every day at 9:00 AM. How can I do that?
Here is my current code:
from minos.cqrs import Service
class MyService(Service):
async def task(self) -> None:
print("Running periodic task...")