File size: 389 Bytes
e966654 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
from fastapi import FastAPI
from snake_rec import snake_app as snake
from fastapi.middleware.cors import CORSMiddleware
app=FastAPI()
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
@app.get("/")
def home():
return {"message":"SISISIS"}
app.include_router(snake)
|