update question

This commit is contained in:
2025-07-10 05:56:26 +08:00
parent 9c49adbaf1
commit 7d8d87074d
3 changed files with 11 additions and 7 deletions

View File

@ -11,8 +11,8 @@ class Transfer(BaseModel):
app = FastAPI()
accounts = {
'1': 1000,
'2': 1000,
'1': {'amount': 1000},
'2': {'amount': 1000},
}
transactions: list[Transfer] = []