mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
9 lines
117 B
Python
9 lines
117 B
Python
import os
|
|
from flask import Flask
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/')
|
|
def hello():
|
|
return 'python/flask'
|