mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-23 04:33:11 +00:00
11 lines
209 B
Python
11 lines
209 B
Python
from django.core.management.base import BaseCommand
|
|
|
|
|
|
from legacy.archive import main
|
|
|
|
|
|
class Command(BaseCommand):
|
|
help = 'ArchiveBox test.bee'
|
|
|
|
def handle(self, *args, **kwargs):
|
|
main(*args)
|