20 lines
525 B
Python
20 lines
525 B
Python
"""CLI wrapper: dub_and_burn
|
|
|
|
Thin wrapper that delegates to the legacy `whisper_project.dub_and_burn` script.
|
|
This keeps the original behaviour but exposes the CLI under
|
|
`whisper_project.cli.dub_and_burn` for a cleaner package layout.
|
|
"""
|
|
|
|
from whisper_project.dub_and_burn import main as _legacy_main
|
|
from whisper_project.logging_config import configure_logging
|
|
|
|
|
|
def main():
|
|
# configurar logging con nivel INFO por defecto
|
|
configure_logging(False)
|
|
return _legacy_main()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|