chipmunk/tranx.go
Derek McQuay 95e85aa011
updated category and tranx types
they now fit what is in the psql db
2017-02-04 22:33:01 -08:00

13 lines
295 B
Go

package chipmunk
import "time"
type tranx struct {
Cost float64 `json:"cost"`
Store string `json:"store"`
Info string `json:"info"`
Month time.Month `json:"month"`
User_ID int `json:"user_id"`
Category_ID int `json:"category_id"`
}