scrape a chase email
This commit is contained in:
15
transaction.go
Normal file
15
transaction.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
type Transaction struct {
|
||||
ID string
|
||||
Bank Bank
|
||||
Amount string
|
||||
Account string
|
||||
Date string
|
||||
}
|
||||
|
||||
func (t *Transaction) String() string {
|
||||
return fmt.Sprint(*t)
|
||||
}
|
||||
Reference in New Issue
Block a user