Skip to content

Commit

Permalink
Interface
Browse files Browse the repository at this point in the history
  • Loading branch information
morgabra committed Jan 5, 2024
1 parent 4cc696d commit d072800
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pkg/connectorbuilder/connectorbuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,26 @@ type builderImpl struct {
cb ConnectorBuilder
}

func (b *builderImpl) CreateResource(ctx context.Context, request *v2.CreateResourceRequest) (*v2.CreateResourceResponse, error) {
//TODO implement me

Check failure on line 79 in pkg/connectorbuilder/connectorbuilder.go

View workflow job for this annotation

GitHub Actions / go-lint

commentFormatting: put a space between `//` and comment text (gocritic)
panic("implement me")
}

func (b *builderImpl) DeleteResource(ctx context.Context, request *v2.DeleteResourceRequest) (*v2.DeleteResourceResponse, error) {
//TODO implement me

Check failure on line 84 in pkg/connectorbuilder/connectorbuilder.go

View workflow job for this annotation

GitHub Actions / go-lint

commentFormatting: put a space between `//` and comment text (gocritic)
panic("implement me")
}

func (b *builderImpl) RotateCredential(ctx context.Context, request *v2.RotateCredentialRequest) (*v2.RotateCredentialResponse, error) {
//TODO implement me

Check failure on line 89 in pkg/connectorbuilder/connectorbuilder.go

View workflow job for this annotation

GitHub Actions / go-lint

commentFormatting: put a space between `//` and comment text (gocritic)
panic("implement me")
}

func (b *builderImpl) CreateAccount(ctx context.Context, request *v2.CreateAccountRequest) (*v2.CreateAccountResponse, error) {
//TODO implement me

Check failure on line 94 in pkg/connectorbuilder/connectorbuilder.go

View workflow job for this annotation

GitHub Actions / go-lint

commentFormatting: put a space between `//` and comment text (gocritic)
panic("implement me")
}

// NewConnector creates a new ConnectorServer for a new resource.
func NewConnector(ctx context.Context, in interface{}) (types.ConnectorServer, error) {
switch c := in.(type) {
Expand Down

0 comments on commit d072800

Please sign in to comment.