Spaces:
Runtime error
Runtime error
delete
Browse files
ice_breaking_challenge/__init__.py
CHANGED
@@ -53,6 +53,5 @@ def create_app(test_config=None):
|
|
53 |
# app.route, while giving the blog blueprint a url_prefix, but for
|
54 |
# the tutorial the blog will be the main index
|
55 |
app.add_url_rule("/", endpoint="index")
|
56 |
-
app.add_url_rule("/qr", endpoint="qr")
|
57 |
|
58 |
return app
|
|
|
53 |
# app.route, while giving the blog blueprint a url_prefix, but for
|
54 |
# the tutorial the blog will be the main index
|
55 |
app.add_url_rule("/", endpoint="index")
|
|
|
56 |
|
57 |
return app
|
ice_breaking_challenge/qr.py
CHANGED
@@ -21,5 +21,4 @@ def qr() -> None:
|
|
21 |
case "GET":
|
22 |
return render_template("qr.html")
|
23 |
case "POST": # qr.html์์ `๋ค์` ๋ฒํผ ๋๋ ์ ๋
|
24 |
-
print("POST request received")
|
25 |
return render_template("introduction.html")
|
|
|
21 |
case "GET":
|
22 |
return render_template("qr.html")
|
23 |
case "POST": # qr.html์์ `๋ค์` ๋ฒํผ ๋๋ ์ ๋
|
|
|
24 |
return render_template("introduction.html")
|