7 lines
188 B
Python
7 lines
188 B
Python
from django.core.management.base import BaseCommand
|
|
from ragnarok.models import Video
|
|
|
|
class Command(BaseCommand):
|
|
args = '<foo bar ...>'
|
|
help = 'our help string comes here'
|