Updates to /connector/sharepoint/collection.go

betaSDK service become a field within SharePoint Collection.
This commit is contained in:
Danny Adams 2023-01-27 11:39:59 -05:00
parent b2ce209eee
commit 7bac82cdba

View File

@ -10,6 +10,7 @@ import (
"github.com/microsoftgraph/msgraph-sdk-go/models"
"github.com/alcionai/corso/src/internal/connector/graph"
"github.com/alcionai/corso/src/internal/connector/graph/betasdk"
"github.com/alcionai/corso/src/internal/connector/support"
"github.com/alcionai/corso/src/internal/data"
"github.com/alcionai/corso/src/internal/observe"
@ -46,6 +47,7 @@ type Collection struct {
jobs []string
// M365 IDs of the items of this collection
service graph.Servicer
betaService betasdk.Service
statusUpdater support.StatusUpdater
}