"""
Main entry point for the AuditWhizz AutoExtract auto clicker application.

This is the refactored version that uses the modular autoclicker package.
"""

from autoclicker import ClickRecorderApp


def main():
    """Main entry point for the application."""
    app = ClickRecorderApp()
    app.mainloop()


if __name__ == '__main__':
    main()