Some checks failed
Remove old artifacts / remove-old-artifacts (push) Has been cancelled
9 lines
225 B
Python
9 lines
225 B
Python
from fastapi import FastAPI
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
|
|
|
|
api = FastAPI()
|
|
api.add_middleware(
|
|
CORSMiddleware, allow_origins=["*"], allow_credentials=True, allow_methods=["*"], allow_headers=["*"]
|
|
)
|