mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-04 15:00:21 +01:00
8 lines
217 B
Python
Executable File
8 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)
|