add dependances

This commit is contained in:
2023-10-12 00:04:18 +02:00
parent bf07aa3df3
commit 4d38ecc08c
6 changed files with 42 additions and 12 deletions

View File

@@ -1,11 +1,12 @@
from fastapi import FastAPI
from .routers import users
from .routers import users, token
app = FastAPI()
app.include_router(users.router)
app.include_router(token.router)
@app.get("/")
async def root():