Add wrapper web thingamabob

This commit is contained in:
Robert Miles 2018-11-10 15:39:04 -05:00
parent eb3116b3b7
commit 6c974e475f
1 changed files with 12 additions and 0 deletions

12
app.py Normal file
View File

@ -0,0 +1,12 @@
from flask import *
app = Flask(__name__)
@app.route("/")
def home():
return "wewlad"
@app.route("/status.json")
def status():
with open("status.json") as f:
return f.read()