Files
vrobbler/vrobbler/apps/scrobbles/management/commands/backup_database.py
Colin Powell 6927729284
All checks were successful
build & deploy / test (push) Successful in 2m3s
build & deploy / build-and-deploy (push) Successful in 32s
[tasks] Add more visibility to backups
2026-05-24 12:39:51 -04:00

8 lines
206 B
Python

from django.core.management.base import BaseCommand
from vrobbler.apps.scrobbles.tasks import backup_database
class Command(BaseCommand):
def handle(self, *args, **options):
backup_database()