mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-25 01:11:00 +00:00
7 lines
217 B
Python
Executable file
7 lines
217 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from app.init import check_and_install_models, check_and_install_transliteration
|
|
|
|
if __name__ == "__main__":
|
|
check_and_install_models(force=True)
|
|
check_and_install_transliteration(force=True)
|