summaryrefslogtreecommitdiff
path: root/apps/map.py
blob: 78bb8a2864aaa15f8b5e3f0bcd9af734457dcf6a (plain)
1
2
3
4
5
6
7
8
from apiflask import APIFlask,APIBlueprint
from flask import render_template

bp=APIBlueprint("map",__name__,url_prefix="/map")

@bp.get("/")
def showmap():
    return render_template("/index.html")