#!/usr/bin/env python3 """ MusicBrainz Data Cleaner - Entry Point Simple entry point that imports from the refactored src structure """ from src.cli.main import main if __name__ == "__main__": exit(main())