aboutsummaryrefslogtreecommitdiffstats
path: root/purchase
AgeCommit message (Collapse)Author
2015-06-07purchase.go: Split `SendMoney` declaration onto 2 linesTeddy Wing
Makes it easier to read. Previously I had trouble trying to do this because I put the argument list on the second line by itself but you can't do that. You need to separate at a comma inside a set of parentheses in order to compile.
2015-06-07Move `sendMoney` func to `purchase` packageTeddy Wing
Create a new package for sending money. Take API keys as args which obviously is not a good idea but it's a hackathon. * Add functions in main.go to initiate hard-coded transactions for house buyer and seller * Move from "com.teddywing" to "github.com/teddywing"