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

18
bank.go Normal file
View File

@@ -0,0 +1,18 @@
package main
type Bank int
const (
Chase Bank = iota + 1
Citi Bank = iota + 1
)
func (b Bank) String() string {
switch b {
case Chase:
return "Chase"
case Citi:
return "Citi"
}
return "?"
}