feat: show account transfer history
All checks were successful
Deploy / build-and-deploy (push) Successful in 2m50s

This commit is contained in:
juancwu 2026-02-20 16:43:25 +00:00
commit e10186fd7a
7 changed files with 223 additions and 2 deletions

View file

@ -33,3 +33,8 @@ type MoneyAccountWithBalance struct {
MoneyAccount
BalanceCents int
}
type AccountTransferWithAccount struct {
AccountTransfer
AccountName string `db:"account_name"`
}