|
|
@ -1,3 +1,4 @@ |
|
|
|
from contextlib import asynccontextmanager |
|
|
|
from typing import Annotated |
|
|
|
|
|
|
|
from fastapi import Depends, FastAPI, HTTPException, Query |
|
|
@ -29,13 +30,14 @@ def get_session(): |
|
|
|
|
|
|
|
SessionDep = Annotated[Session, Depends(get_session)] |
|
|
|
|
|
|
|
app = FastAPI() |
|
|
|
@asynccontextmanager |
|
|
|
async def lifespan(app:FastAPI): |
|
|
|
create_db_and_tables() #Startup |
|
|
|
yield #This Allows app to run |
|
|
|
|
|
|
|
#Statements below yield are ran after shutdown |
|
|
|
|
|
|
|
@app.on_event("startup") |
|
|
|
def on_startup(): |
|
|
|
create_db_and_tables() |
|
|
|
|
|
|
|
app = FastAPI(lifespan=lifespan) |
|
|
|
|
|
|
|
@app.post("/heroes/") |
|
|
|
def create_hero(hero: Hero, session: SessionDep) -> Hero: |
|
|
|