mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-22 20:23:12 +00:00
10 lines
126 B
Python
Executable file
10 lines
126 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
__package__ = 'archivebox'
|
|
|
|
from .cli.archivebox import main
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|
|
|