VishnuMate27
Added / endpoint and changes in dockerfile.
16e43c0
raw
history blame contribute delete
139 Bytes
from app.routes import create_app
import os
app = create_app()
@app.route("/")
def home():
return "Hello from Flask on Hugging Face!"