Files
eveAI/scripts/run_eveai_chat_client.py
Josako bc1626c4ff - Initialisation of the EveAI Chat Client.
- Introduction of Tenant Makes
2025-06-06 16:42:24 +02:00

9 lines
158 B
Python

from gevent import monkey
monkey.patch_all()
from eveai_chat_client import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True)