2024-04-01 11:31:16 +05:30
|
|
|
|
|
|
|
|
from django.core.management.base import BaseCommand
|
2024-05-09 16:21:48 +05:30
|
|
|
from ...tasks import notification_for_meal_and_medication
|
2024-04-01 11:31:16 +05:30
|
|
|
|
|
|
|
|
class Command(BaseCommand):
|
|
|
|
|
help = 'Sends notifications to users'
|
|
|
|
|
|
|
|
|
|
def handle(self, *args, **kwargs):
|
|
|
|
|
notification_for_meal_and_medication()
|