mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 19:13:51 +00:00
11 lines
108 B
Python
11 lines
108 B
Python
from flask import Flask
|
|
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route("/")
|
|
def home():
|
|
return "Home Page Route"
|
|
|