npv2k1's picture
Rename project to "capture-page-tools" and implement Gradio app for webpage screenshot capture
3b7ec04
raw
history blame contribute delete
387 Bytes
#!/usr/bin/env python3
import logging
import os
from pathlib import Path
from typing import Dict
def main() -> None:
"""Main application entry point."""
try:
print("Start app...")
import src.modules.apps
except Exception as e:
logging.error(f"Application failed to start: {e}", exc_info=True)
raise
if __name__ == "__main__":
main()