From 3e363049a6c34527040a3c109010ae024424d905 Mon Sep 17 00:00:00 2001 From: lennardevertz Date: Thu, 15 Feb 2024 00:34:23 +0100 Subject: [PATCH] - minor fix --- send_blueprint.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/send_blueprint.py b/send_blueprint.py index 5aa32b9..f1a2347 100644 --- a/send_blueprint.py +++ b/send_blueprint.py @@ -1,15 +1,16 @@ from flask import Blueprint, render_template -send_blueprint = Blueprint('streamer', __name__, +send_blueprint = Blueprint('send', __name__, template_folder='templates', static_folder='static', static_url_path='/frontend/send-to-anyone-page/static') -@streamer_blueprint.route('/send', methods=["GET"]) +@send_blueprint.route('/send', methods=["GET"]) def send_index(): return render_template('send-to-anyone.html') -@streamer_blueprint.route('/send/