first thing

This commit is contained in:
spikey 2024-02-24 10:40:08 -05:00
parent e51f2a02e1
commit 27ba8ab59e
1 changed files with 10 additions and 0 deletions

10
main.py Executable file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env python3
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello_world():
return "<p>Hello, World!</p>"
app.run()