Files
julius_baer_onboarding/app.py

23 lines
380 B
Python
Raw Normal View History

import logging
2025-04-11 22:42:54 +02:00
from flask import Flask
import config
from dto.requests import GameStartRequestDTO, GameDecisionRequestDTO
from services.player import Player
2025-04-12 02:15:19 +02:00
2025-04-11 22:42:54 +02:00
app = Flask(__name__)
@app.route('/')
def hello_world(): # put application's code here
return 'Hello World!'
if __name__ == '__main__':
player = Player()
player.play_on_separate_thread()
2025-04-12 02:15:19 +02:00
2025-04-11 22:42:54 +02:00
app.run()