ponyapi/ponyapi.py

13 lines
200 B
Python
Raw Normal View History

2015-08-09 19:48:49 +00:00
import os
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Welcome to the Pony API!"
@app.route("/search")
def search():
return 500, "Not implemented yet"