mirror of
https://github.com/smallstep/certificates.git
synced 2024-10-31 03:20:16 +00:00
10 lines
186 B
Python
10 lines
186 B
Python
from flask import Flask
|
|
app = Flask(__name__)
|
|
|
|
@app.route("/")
|
|
def hello():
|
|
return "Hello World!\n"
|
|
|
|
if __name__ == "__main__":
|
|
app.run(host='127.0.0.1', port=8080, debug=False)
|