init, .gitignore

This commit is contained in:
2025-11-11 00:02:49 +01:00
commit 4e18cd0eb3
124 changed files with 16300 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello_world():
return "This is Moon"
if __name__ == "__main__":
app.run()