Files
digest_app/module_notification/management/commands/send_notification.py
2024-04-01 11:31:16 +05:30

9 lines
271 B
Python

from django.core.management.base import BaseCommand
from ...cron_job import notification_for_meal_and_medication
class Command(BaseCommand):
help = 'Sends notifications to users'
def handle(self, *args, **kwargs):
notification_for_meal_and_medication()