File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 1111
1212# we need to load env variables before initialization code runs
1313from . import models # noqa: E402
14- from .routes import user # noqa: E402
14+ from .routes import user , schedule # noqa: E402
1515from .utilities .firebase_init import initialize_firebase # noqa: E402
1616
1717log = logging .getLogger ("uvicorn" )
@@ -22,7 +22,6 @@ async def lifespan(_: FastAPI):
2222 log .info ("Starting up..." )
2323 # models.run_migrations()
2424 initialize_firebase ()
25- initialize_firebase ()
2625 yield
2726 log .info ("Shutting down..." )
2827
Original file line number Diff line number Diff line change 88from app .models import Schedule , TimeBlock
99# from app.schemas.schedule import UserCreate, UserInDB, UserRole
1010# from app.schemas.time_block import UserCreate, UserInDB, UserRole
11- from app .services . interfaces .schedule_service import IScheduleService
11+ from app .interfaces .schedule_service import IScheduleService
1212from app .schemas .schedule import (
1313 ScheduleState ,
1414 ScheduleCreate ,
You can’t perform that action at this time.
0 commit comments