9 lines
158 B
Python
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) |