Skip to content

Commit

Permalink
- minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lennardevertz committed Feb 14, 2024
1 parent ce6fc77 commit 3e36304
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions send_blueprint.py
Original file line number Diff line number Diff line change
@@ -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/<nav>', methods=["GET"])

@send_blueprint.route('/send/<nav>', methods=["GET"])
def send_nav():
return render_template('send-to-anyone.html')

0 comments on commit 3e36304

Please sign in to comment.