9 lines
268 B
Python
9 lines
268 B
Python
|
|
from django.core.management.base import BaseCommand
|
|
from ...tasks import notification_for_meal_and_medication
|
|
|
|
class Command(BaseCommand):
|
|
help = 'Sends notifications to users'
|
|
|
|
def handle(self, *args, **kwargs):
|
|
notification_for_meal_and_medication() |