mirror of
https://github.com/kennethreitz/curated-nodes.git
synced 2026-06-05 23:20:20 +00:00
11 lines
168 B
Python
11 lines
168 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from flask import Flask
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/')
|
|
def hello():
|
|
return 'Hello World!'
|
|
|
|
if __name__ == '__main__':
|
|
app.run() |