Skip to content

Commit f0344bf

Browse files
committed
changing name
1 parent de4bf47 commit f0344bf

File tree

328 files changed

+623
-623
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

328 files changed

+623
-623
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import (
1616
"log"
1717
"strconv"
1818

19-
"github.com/microsoft/azure-devops-go-api/azuredevops/v7"
20-
"github.com/microsoft/azure-devops-go-api/azuredevops/v7/core"
19+
"github.com/MarcoDelGamba/azure-devops-go-api/azuredevops/v7"
20+
"github.com/MarcoDelGamba/azure-devops-go-api/azuredevops/v7/core"
2121
)
2222

2323
func main() {

azuredevops/accounts/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ package accounts
1111
import (
1212
"context"
1313
"github.com/google/uuid"
14-
"github.com/microsoft/azure-devops-go-api/azuredevops"
14+
"github.com/MarcoDelGamba/azure-devops-go-api/azuredevops"
1515
"net/http"
1616
"net/url"
1717
)

azuredevops/accounts/models.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ package accounts
1010

1111
import (
1212
"github.com/google/uuid"
13-
"github.com/microsoft/azure-devops-go-api/azuredevops"
13+
"github.com/MarcoDelGamba/azure-devops-go-api/azuredevops"
1414
)
1515

1616
type Account struct {

azuredevops/audit/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ package audit
1111
import (
1212
"context"
1313
"github.com/google/uuid"
14-
"github.com/microsoft/azure-devops-go-api/azuredevops"
14+
"github.com/MarcoDelGamba/azure-devops-go-api/azuredevops"
1515
"io"
1616
"net/http"
1717
"net/url"

azuredevops/audit/models.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ package audit
1010

1111
import (
1212
"github.com/google/uuid"
13-
"github.com/microsoft/azure-devops-go-api/azuredevops"
13+
"github.com/MarcoDelGamba/azure-devops-go-api/azuredevops"
1414
)
1515

1616
// Defines all the categories an AuditAction can be

azuredevops/build/client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"context"
1414
"encoding/json"
1515
"github.com/google/uuid"
16-
"github.com/microsoft/azure-devops-go-api/azuredevops"
17-
"github.com/microsoft/azure-devops-go-api/azuredevops/webapi"
16+
"github.com/MarcoDelGamba/azure-devops-go-api/azuredevops"
17+
"github.com/MarcoDelGamba/azure-devops-go-api/azuredevops/webapi"
1818
"io"
1919
"net/http"
2020
"net/url"

azuredevops/build/models.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ package build
1010

1111
import (
1212
"github.com/google/uuid"
13-
"github.com/microsoft/azure-devops-go-api/azuredevops"
14-
"github.com/microsoft/azure-devops-go-api/azuredevops/core"
15-
"github.com/microsoft/azure-devops-go-api/azuredevops/distributedtaskcommon"
16-
"github.com/microsoft/azure-devops-go-api/azuredevops/git"
17-
"github.com/microsoft/azure-devops-go-api/azuredevops/test"
18-
"github.com/microsoft/azure-devops-go-api/azuredevops/webapi"
13+
"github.com/MarcoDelGamba/azure-devops-go-api/azuredevops"
14+
"github.com/MarcoDelGamba/azure-devops-go-api/azuredevops/core"
15+
"github.com/MarcoDelGamba/azure-devops-go-api/azuredevops/distributedtaskcommon"
16+
"github.com/MarcoDelGamba/azure-devops-go-api/azuredevops/git"
17+
"github.com/MarcoDelGamba/azure-devops-go-api/azuredevops/test"
18+
"github.com/MarcoDelGamba/azure-devops-go-api/azuredevops/webapi"
1919
)
2020

2121
// Represents a queue for running builds.

azuredevops/cix/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"context"
1414
"encoding/json"
1515
"github.com/google/uuid"
16-
"github.com/microsoft/azure-devops-go-api/azuredevops"
16+
"github.com/MarcoDelGamba/azure-devops-go-api/azuredevops"
1717
"net/http"
1818
"net/url"
1919
)

azuredevops/cix/models.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ package cix
1010

1111
import (
1212
"github.com/google/uuid"
13-
"github.com/microsoft/azure-devops-go-api/azuredevops/core"
13+
"github.com/MarcoDelGamba/azure-devops-go-api/azuredevops/core"
1414
)
1515

1616
type BuildFrameworkDetectionType string

azuredevops/clientTrace/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"context"
1414
"encoding/json"
1515
"github.com/google/uuid"
16-
"github.com/microsoft/azure-devops-go-api/azuredevops"
16+
"github.com/MarcoDelGamba/azure-devops-go-api/azuredevops"
1717
"net/http"
1818
)
1919

0 commit comments

Comments
 (0)