File size: 322 Bytes
af25078 6f2ee16 af25078 6f2ee16 af25078 6f2ee16 af25078 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/usr/bin/env python3
"""Hugging Face compatibility entrypoint.
The native HF implementation lives in :mod:`app_hf`; keeping this small
wrapper means Spaces configured with the historical ``app.py`` filename still
run the same no-guardian deployment.
"""
from app_hf import main
if __name__ == "__main__":
main()
|