Files
homelab/userbot/.unused/app.py
T
forust 3c383db9a7
Deploy to Server / deploy (push) Has been cancelled
refactor: extract userbot to standalone repo, add as git submodule
userbot now lives at ssh://git@gitssh.forust.xyz:2221/forust/userbot.git
and is included in homelab as a submodule at userbot/
2026-06-19 15:39:00 +02:00

13 lines
153 B
Python

from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'This is Moon'
if __name__ == '__main__':
app.run()