rollout v1

This commit is contained in:
Waylon Walker 2024-03-12 20:07:15 -05:00
parent eebe310060
commit bebfe9013d
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
4 changed files with 158 additions and 1 deletions

8
hello-world/app.py Normal file
View file

@ -0,0 +1,8 @@
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello_world():
return "Hello, V1"