Merge commit '3eaef5dc90b716cc0fa391cbe2394be56d5f6041' as 'userbot'
Deploy to Server / deploy (push) Has been cancelled

This commit is contained in:
2026-06-19 23:20:23 +02:00
132 changed files with 15257 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()