Working backend without container
This commit is contained in:
parent
18e6420500
commit
dca5bbda5c
2 changed files with 1 additions and 1 deletions
8
backend/src/app.py
Normal file
8
backend/src/app.py
Normal 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()}
|
Loading…
Add table
Add a link
Reference in a new issue