Paweł Łaba commited on
Commit
445bfe3
·
1 Parent(s): 5d3a98e
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -67,7 +67,7 @@ async def read_root():
67
  return HTMLResponse(content="Plik index.html nie został znaleziony", status_code=404)
68
 
69
 
70
- @app.get("/status")
71
  async def get_status():
72
  print("Endpoint /status został wywołany.")
73
  return JSONResponse({
@@ -77,7 +77,7 @@ async def get_status():
77
  })
78
 
79
 
80
- @app.post("/move")
81
  async def get_move(request: Request):
82
  """
83
  Endpoint do wykonania ruchu AI
 
67
  return HTMLResponse(content="Plik index.html nie został znaleziony", status_code=404)
68
 
69
 
70
+ @app.get("/api/status")
71
  async def get_status():
72
  print("Endpoint /status został wywołany.")
73
  return JSONResponse({
 
77
  })
78
 
79
 
80
+ @app.post("/api/move")
81
  async def get_move(request: Request):
82
  """
83
  Endpoint do wykonania ruchu AI