stash
Code
Branches
Tags
Commits
master
stash
/
ansible-flask
/
files
/
app
/
views.py
Raw
Copy raw content
Download raw file
Top
1
from
app
import
app
2
3
@app.route
(
'
/
'
)
4
@app.route
(
'
/index
'
)
5
def
index
(
)
:
6
return
"
Hello, World!
"