login with JWT

This commit is contained in:
2026-05-15 22:58:53 +08:00
parent d14fe10ea7
commit 1c513a2f3e
5 changed files with 150 additions and 6 deletions
+4
View File
@@ -1,5 +1,9 @@
from fastapi import FastAPI
from auth import router as auth_router
from models import Base
from db import engine
Base.metadata.create_all(bind=engine)
app = FastAPI()