- Initialisation of the EveAI Chat Client.

- Introduction of Tenant Makes
This commit is contained in:
Josako
2025-06-06 16:42:24 +02:00
parent 57c0e7a1ba
commit bc1626c4ff
40 changed files with 1767 additions and 36 deletions

View File

@@ -0,0 +1,9 @@
from gevent import monkey
monkey.patch_all()
from eveai_chat_client import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True)