From a57a964c601cb8c71058436a72ef966ce37e345b Mon Sep 17 00:00:00 2001 From: Simple_Not <44047940+moonbaseDelta@users.noreply.github.com> Date: Thu, 13 Jul 2023 15:12:58 +1000 Subject: [PATCH] fix --- app.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app.py b/app.py index 7061917..1e13dc0 100644 --- a/app.py +++ b/app.py @@ -56,13 +56,13 @@ def page_board(board_id): return render_template("board.html", board_id=board_id, boards=board_list, board_threads=b_threads) -@app.route('/post_my_post', method=['POST']) -def post_a_post(): - pass +# @app.route('/post_my_post', method=['POST']) +# def post_a_post(): +# pass -@app.route('/post_my_file', method=['POST']) -def post_a_file(): - pass +# @app.route('/post_my_file', method=['POST']) +# def post_a_file(): +# pass ### stolen