예제 #1
0
파일: app.py 프로젝트: uNNatuRaLtm/WHYsnek
def move():
    data = request.get_json()
    goNext = ['up','right','down','left']
    decision = decide(data)
    return jsonify(
        move = goNext[decision],
        taunt = 'msg'
    )
예제 #2
0
 def move(self, data):
     decision = decide(data)
     return decision