packagemainimport("com.teddywing/new-house-on-the-block/vendor/_nuts/github.com/fabioberger/coinbase-go""fmt""log""os")funcmain(){c:=coinbase.ApiKeyClientSandbox(os.Getenv("COINBASE_KEY"),os.Getenv("COINBASE_SECRET"))balance,err:=c.GetBalance()iferr!=nil{log.Print(err)}fmt.Printf("Balance is %f BTC\n",balance)}