first commit

This commit is contained in:
CHIEFSOFT\ameye
2025-02-02 22:04:47 -05:00
commit 40e5ced734
4 changed files with 69 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello():
return "Hello World!"
if __name__ == '__main__':
app.run(host='0.0.0.0', port=8000)