14 lines
311 B
Python
14 lines
311 B
Python
#!/usr/bin/env python3
|
|
"""Compatibility shim: run_full_pipeline
|
|
|
|
This module forwards to `whisper_project.main:main` to preserve the
|
|
historical CLI entrypoint name expected by tests and users.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
from whisper_project.main import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|