1
0
Fork 0
mirror of synced 2024-07-03 05:20:52 +12:00
ArchiveBox/archivebox/core/management/commands/archivebox.py

12 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)