package database import "time" type Account struct { ID uint Name string Kind string } type Transaction struct { ID uint Amount float32 Debit bool OffsetAccount uint Account uint Date time.Time Description string } type User struct { ID string Name string Password string }