MarioPrzBasto's picture
Add application file
8ff6a54
raw
history blame
87 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return "oi"