scrape a chase email

This commit is contained in:
bel
2020-04-02 22:03:49 +00:00
parent 7434e49a1f
commit 205879fc3b
5 changed files with 180 additions and 2 deletions

15
transaction.go Normal file
View 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)
}