ArchiveBox/archivebox/core/management/commands/archivebox.py
2019-04-02 16:36:41 -04:00

10 lines
201 B
Python

from django.core.management.base import BaseCommand
from core.archive import main
class Command(BaseCommand):
help = 'ArchiveBox test.bee'
def handle(self, *args, **kwargs):
main()