flaskyoutube / main.py
Yong-Sik's picture
test
06d2b31
raw
history blame contribute delete
No virus
121 Bytes
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return {"hei":"you success deploy here"}