Добавлены настройки расширения, введена поддержка локализации, изменены и адаптированы иконки приложений

This commit is contained in:
2024-07-27 23:39:28 +03:00
parent 7911e34c00
commit 333ae3d9d2
25 changed files with 745 additions and 126 deletions

View File

@ -1,3 +1,9 @@
__version__ = "1.0.0"
__author__ = "csasq"
__license__ = "CC BY-NC 4.0"
import logging
import shutil
import uvicorn
@ -12,6 +18,7 @@ if __name__ == '__main__':
app=app,
host=config.Main.host,
port=config.Main.port,
log_level=logging.WARNING,
)
except InterruptedError:
shutil.rmtree(config.Main.images_directory)