Files
encoach_backend/app.py
Cristiano Ferreira 4d97cd5489 first commit
2023-02-27 22:58:34 +00:00

13 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()