Updates to /connector/onedrive package

Package reverted back to msgraph-sdk-go.
This commit is contained in:
Danny Adams 2023-01-25 06:33:44 -05:00
parent 63d2d7f4d8
commit 10c605d02b
8 changed files with 15 additions and 15 deletions

View File

@ -8,7 +8,7 @@ import (
"sync/atomic"
"time"
"github.com/microsoftgraph/msgraph-beta-sdk-go/models"
"github.com/microsoftgraph/msgraph-sdk-go/models"
"github.com/spatialcurrent/go-lazy/pkg/lazy"
"github.com/alcionai/corso/src/internal/connector/graph"

View File

@ -9,8 +9,8 @@ import (
"testing"
"time"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
"github.com/microsoftgraph/msgraph-beta-sdk-go/models"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
"github.com/microsoftgraph/msgraph-sdk-go/models"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"

View File

@ -5,7 +5,7 @@ import (
"fmt"
"strings"
"github.com/microsoftgraph/msgraph-beta-sdk-go/models"
"github.com/microsoftgraph/msgraph-sdk-go/models"
"github.com/pkg/errors"
"github.com/alcionai/corso/src/internal/connector/graph"

View File

@ -4,7 +4,7 @@ import (
"strings"
"testing"
"github.com/microsoftgraph/msgraph-beta-sdk-go/models"
"github.com/microsoftgraph/msgraph-sdk-go/models"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"

View File

@ -6,12 +6,12 @@ import (
"strings"
"time"
msdrive "github.com/microsoftgraph/msgraph-beta-sdk-go/drive"
msdrives "github.com/microsoftgraph/msgraph-beta-sdk-go/drives"
"github.com/microsoftgraph/msgraph-beta-sdk-go/models"
"github.com/microsoftgraph/msgraph-beta-sdk-go/models/odataerrors"
"github.com/microsoftgraph/msgraph-beta-sdk-go/sites"
msgraphgocore "github.com/microsoftgraph/msgraph-sdk-go-core"
msdrive "github.com/microsoftgraph/msgraph-sdk-go/drive"
msdrives "github.com/microsoftgraph/msgraph-sdk-go/drives"
"github.com/microsoftgraph/msgraph-sdk-go/models"
"github.com/microsoftgraph/msgraph-sdk-go/models/odataerrors"
"github.com/microsoftgraph/msgraph-sdk-go/sites"
"github.com/pkg/errors"
"golang.org/x/exp/maps"

View File

@ -6,8 +6,8 @@ import (
"io"
"strings"
msdrives "github.com/microsoftgraph/msgraph-beta-sdk-go/drives"
"github.com/microsoftgraph/msgraph-beta-sdk-go/models"
msdrives "github.com/microsoftgraph/msgraph-sdk-go/drives"
"github.com/microsoftgraph/msgraph-sdk-go/models"
"github.com/pkg/errors"
"github.com/alcionai/corso/src/internal/connector/graph"

View File

@ -6,8 +6,8 @@ import (
"io"
"testing"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
"github.com/microsoftgraph/msgraph-beta-sdk-go/models"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
"github.com/microsoftgraph/msgraph-sdk-go/models"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"

View File

@ -3,7 +3,7 @@ package onedrive
import (
"testing"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
"github.com/stretchr/testify/require"
"github.com/alcionai/corso/src/internal/connector/graph"