Skip to content

Commit

Permalink
Update robots.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
pjsier committed Jan 10, 2024
1 parent 26716b8 commit 0799064
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 5 additions & 0 deletions api/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ def index():
return send_file(os.path.join(STATIC_BUILD_DIR, "index.html"))


@app.route("/robots.txt", methods=["GET"])
def robots():
return send_file(os.path.join(STATIC_BUILD_DIR, "robots.txt"))


@app.route("/api_v1/pin-lookup", methods=["POST"])
def handle_form0():
response_dict = address_candidates(
Expand Down
1 change: 0 additions & 1 deletion public/robots.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:

0 comments on commit 0799064

Please sign in to comment.