test bank.cache
Some checks failed
cicd / ci (push) Failing after 17s

This commit is contained in:
Bel LaPointe
2025-05-23 20:32:49 -06:00
parent 6440b07d14
commit e0fa44eef7
4 changed files with 152 additions and 1 deletions

View File

@@ -1,6 +1,10 @@
package bank
import "context"
type Agg interface {
Accounts(context.Context) ([]Account, error)
Transactions(context.Context, Account) ([]Transaction, error)
}
type Account struct {