# your_app/management/commands/approve_attendance.py

from django.core.management.base import BaseCommand
from account.models import *
from account.custom_today import get_custom_today  # Adjust this import if needed

class Command(BaseCommand):
    help = 'Approve attendance summary cart for today'

    def handle(self, *args, **kwargs):
        user, _ = Member.objects.all().delete()
        self.stdout.write(self.style.SUCCESS(f"{user} user deleted"))




