Dave Machado
Results
2
issues of
Dave Machado
When following Quickstart instructions for Mac/Linux (`./create_config && meteor`): It appears `./create_config` completes fine, giving back the following output: Server side config created. Edit it in private/config.json to add Facebook...
main.go: ```Go package main import ( "fmt" finance "github.com/FlashBoys/go-finance" ) func main() { // 15-min delayed full quote for Apple. q, err := finance.GetQuote("AAPL") if err == nil { fmt.Println(q)...