mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-12-03 17:39:13 +00:00
10 lines
201 B
Python
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()
|