Working backend without container

This commit is contained in:
cami 2021-05-07 04:02:18 +02:00
parent 18e6420500
commit dca5bbda5c
2 changed files with 1 additions and 1 deletions

8
backend/src/app.py Normal file
View file

@ -0,0 +1,8 @@
import time
from flask import Flask
app = Flask(__name__)
@app.route('/time')
def get_current_time():
return {'time': time.time()}