1
0
Fork 0
mirror of synced 2024-07-05 14:30:23 +12:00
ArchiveBox/archivebox/core/management/commands/archivebox.py

12 lines
209 B
Python
Raw Normal View History

2019-04-03 09:36:41 +13:00
from django.core.management.base import BaseCommand
from legacy.archive import main
2019-04-03 09:36:41 +13:00
class Command(BaseCommand):
help = 'ArchiveBox test.bee'
def handle(self, *args, **kwargs):
main(*args)