wip: recurring transactions
Some checks failed
Build Docker Image / Build-Docker-Image (push) Failing after 5m7s

This commit is contained in:
2025-05-20 23:18:16 +02:00
parent b27a2050a7
commit 8378123e66
15 changed files with 855 additions and 54 deletions

View File

@@ -17,14 +17,12 @@ type Account interface {
type AccountImpl struct {
s service.Account
a service.Auth
r *Render
}
func NewAccount(s service.Account, a service.Auth, r *Render) Account {
func NewAccount(s service.Account, r *Render) Account {
return AccountImpl{
s: s,
a: a,
r: r,
}
}