diff options
| author | 韩丁康 <[email protected]> | 2024-01-09 17:20:16 +0800 |
|---|---|---|
| committer | 韩丁康 <[email protected]> | 2024-01-09 17:20:16 +0800 |
| commit | b97ed22b805c40abc27c689cc307deb364312902 (patch) | |
| tree | 6fe533a96206c11b5bfbccc61eb0a0058458ba3b /apps/map.py | |
| parent | 5bf171061f2b1c81c103af091964ac2d16b71dbd (diff) | |
首次同步
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 |
