remove unimplemented functions

This commit is contained in:
Ryan McKinley 2024-06-21 14:55:40 +03:00
parent ec925bab80
commit af38567ea5

View File

@ -295,18 +295,3 @@ func (b *entityBridge) List(ctx context.Context, req *resource.ListRequest) (*re
}
return rsp, nil
}
// GetBlob implements ResourceServer.
func (b *entityBridge) GetBlob(context.Context, *resource.GetBlobRequest) (*resource.GetBlobResponse, error) {
return nil, resource.ErrNotImplementedYet
}
// History implements ResourceServer.
func (b *entityBridge) History(context.Context, *resource.HistoryRequest) (*resource.HistoryResponse, error) {
return nil, resource.ErrNotImplementedYet
}
// Origin implements ResourceServer.
func (b *entityBridge) Origin(context.Context, *resource.OriginRequest) (*resource.OriginResponse, error) {
return nil, resource.ErrNotImplementedYet
}