Spaces:
Sleeping
Sleeping
File size: 446 Bytes
feca41c 988d6d5 feca41c 0e3d371 feca41c dbd3028 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
app = FastAPI()
origins = ['http://localhost:3000', 'http://127.0.0.1:3000',
'https://localhost:3000', 'https://127.0.0.1:3000']
app.add_middleware(
CORSMiddleware,
allow_origins=['*']
)
@app.get("/")
def read_root():
return {"message": "Hello World"}
@app.get("/api/python")
def hello_python():
return {"message": "Hello Python"} |