DummyApp/main.py
Norvicdev ae54f81717 done
2026-08-04 16:39:49 +03:00

12 lines
184 B
Python

from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world(): # put application's code here
return 'Hello World!'
if __name__ == '__main__':
app.run()