12345678910 |
- from django.core.management.base import BaseCommand, CommandError
- #https://docs.djangoproject.com/en/1.10/howto/custom-management-commands/
- class Command(BaseCommand):
- help = 'Converts the next video in queue'
- def handle(self, *args, **options):
- self.stdout.write(self.style.SUCCESS('should perform stuff'))
|