Files
julius_baer_onboarding/app.py

15 lines
195 B
Python
Raw Normal View History

2025-04-12 01:49:07 +02:00
import os
2025-04-11 22:42:54 +02:00
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()