add dependencies

This commit is contained in:
2023-10-11 23:45:12 +02:00
parent e28520a5fb
commit 4a3827f7c0
5 changed files with 91 additions and 7 deletions

View File

@@ -2,6 +2,7 @@ from fastapi import FastAPI
from .routers import users
app = FastAPI()
app.include_router(users.router)