Browse Source

✏️ Fix protocol separator typo (#647)

pull/742/head
Forest Monsen 5 years ago
committed by Sebastián Ramírez
parent
commit
7781cc0936
  1. 4
      docs/src/cors/tutorial001.py

4
docs/src/cors/tutorial001.py

@ -6,8 +6,8 @@ app = FastAPI()
origins = [
"http://localhost.tiangolo.com",
"https://localhost.tiangolo.com",
"http:localhost",
"http:localhost:8080",
"http://localhost",
"http://localhost:8080",
]
app.add_middleware(

Loading…
Cancel
Save