kokluch commited on
Commit
dc6faa5
·
1 Parent(s): 8286de5

Fix typo robots.txt

Browse files
Files changed (2) hide show
  1. app.py +3 -3
  2. robot.txt → robots.txt +0 -0
app.py CHANGED
@@ -62,9 +62,9 @@ def get_well_known_aasa():
62
  media_type="application/json"
63
  )
64
 
65
- @app.get("/robot.txt", include_in_schema=False)
66
- def get_robot_txt():
67
- return FileResponse("robot.txt")
68
 
69
  @app.post("/predict")
70
  def predict(model: InputModel) -> OutputModel:
 
62
  media_type="application/json"
63
  )
64
 
65
+ @app.get("/robots.txt", include_in_schema=False)
66
+ def get_robots_txt():
67
+ return FileResponse("robots.txt")
68
 
69
  @app.post("/predict")
70
  def predict(model: InputModel) -> OutputModel:
robot.txt → robots.txt RENAMED
File without changes