11 lines
266 B
Python
11 lines
266 B
Python
|
from flask import Flask
|
||
|
from flask import render_template
|
||
|
app = Flask(__name__, template_folder='./', static_url_path='',
|
||
|
static_folder='./',)
|
||
|
|
||
|
@app.route("/")
|
||
|
def hello():
|
||
|
return render_template("map.html")
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
app.run()
|