Files
Moon-UB-overver/app.py
deepsource-autofix[bot] 16ce0ce826 refactor: add newline at end of file
It is recommended to put a newline at the end of the file.
2024-05-01 22:48:07 +05:30

11 lines
151 B
Python

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