chipmunk/category.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

8 lines
133 B
Go

package chipmunk
type category struct {
ID int `json:"id"`
Name string `json:"name"`
Budget float64 `json:"budget"`
}