10 lines
212 B
Python
10 lines
212 B
Python
#!/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()) |