mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-11 12:48:28 +03:00
14 lines
264 B
Python
14 lines
264 B
Python
"""Entry point for the auto_archiver package."""
|
|
|
|
from auto_archiver.core.orchestrator import ArchivingOrchestrator
|
|
import sys
|
|
|
|
|
|
def main():
|
|
for _ in ArchivingOrchestrator()._command_line_run(sys.argv[1:]):
|
|
pass
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|