Initial environment commit

This commit is contained in:
2025-12-19 10:01:11 -05:00
commit 6e36ecf0e9
6 changed files with 173 additions and 0 deletions

7
main.py Normal file
View File

@@ -0,0 +1,7 @@
from flask import Flask
app = Flask(__name__)
@app.route("/")
def home():
return "Hello, World!"