Adding changes to abstract better

This commit is contained in:
gfleury
2017-12-26 21:41:19 +02:00
parent df4e6ecbbf
commit 98ce84d1c0
7 changed files with 5461 additions and 5718 deletions

BIN
cmd/debug Executable file

Binary file not shown.

27
cmd/main.go Normal file
View File

@ -0,0 +1,27 @@
package main
import (
"context"
"fmt"
"time"
"github.com/gfleury/go-bitbucket-v1"
)
func main() {
basicAuth := bitbucketv1.BasicAuth{UserName: "gfleury", Password: "killmore"}
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"),
)
response, err := client.DefaultApi.GetUsers(nil)
if err != nil {
fmt.Printf("%s\n", err.Error())
}
fmt.Printf("%v", response)
}