Add main entry point

Added a main entry point in __main__.py to allow running the exporter as a script. Required for standalone binary
This commit is contained in:
KnugiHK
2025-12-15 01:12:04 +08:00
parent fa629503f7
commit 71ca293557

View File

@@ -730,4 +730,7 @@ def main():
# Handle media directory
handle_media_directory(args)
print("Everything is done!")
print("Everything is done!")
if __name__ == "__main__":
main()