Files
vrobbler/vrobbler/apps/scrobbles/management/commands/send_mood_checkin.py
Colin Powell 5934dcdf8e
All checks were successful
build & deploy / test (push) Successful in 1m53s
build & deploy / deploy (push) Successful in 1m12s
[format] Blacken everything
2026-03-11 23:54:24 -04:00

9 lines
307 B
Python

from django.core.management.base import BaseCommand
from vrobbler.apps.scrobbles.utils import send_mood_checkin_reminders
class Command(BaseCommand):
def handle(self, *args, **options):
sent_count = send_mood_checkin_reminders()
print(f"Sent {sent_count} mood check-in notifications")