diff options
Diffstat (limited to 'apps/map.py')
| -rw-r--r-- | apps/map.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/map.py b/apps/map.py new file mode 100644 index 0000000..78bb8a2 --- /dev/null +++ b/apps/map.py @@ -0,0 +1,8 @@ +from apiflask import APIFlask,APIBlueprint +from flask import render_template + +bp=APIBlueprint("map",__name__,url_prefix="/map") + [email protected]("/") +def showmap(): + return render_template("/index.html")
\ No newline at end of file |
