Skip to content
Permalink
eb31da7601
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
10 lines (6 sloc) 247 Bytes
from flask import Blueprint, url_for, send_file
images_bl = Blueprint('images', __name__)
# @images_bl.route("/", methods = ["GET", "POST"])
@images_bl.route("/dot", methods = ["GET"])
def dot():
return send_file('static/img/dot.svg')