From bdaa5243e71c6a94aaf9bb5ccd071014134487d9 Mon Sep 17 00:00:00 2001 From: George Fleury Date: Wed, 27 Dec 2017 11:23:03 +0200 Subject: [PATCH] Update main.go --- cmd/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/main.go b/cmd/main.go index d4f2897..7e61449 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -9,14 +9,14 @@ import ( ) func main() { - basicAuth := bitbucketv1.BasicAuth{UserName: "gfleury", Password: "killmore"} + basicAuth := bitbucketv1.BasicAuth{UserName: "", Password: ""} ctx, cancel := context.WithTimeout(context.Background(), 6000*time.Millisecond) ctx = context.WithValue(ctx, bitbucketv1.ContextBasicAuth, basicAuth) defer cancel() client := bitbucketv1.NewAPIClient( ctx, - bitbucketv1.NewConfiguration("http://ec2-54-186-25-213.us-west-2.compute.amazonaws.com/rest"), + bitbucketv1.NewConfiguration("http://amazonaws.com/rest"), ) response, err := client.DefaultApi.GetUsers(nil) if err != nil {