mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-08 03:18:28 +03:00
13 lines
224 B
Python
13 lines
224 B
Python
from . import Config
|
|
from . import ArchivingOrchestrator
|
|
|
|
def main():
|
|
config = Config()
|
|
config.parse()
|
|
orchestrator = ArchivingOrchestrator(config)
|
|
orchestrator.feed()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|