Bump google.golang.org/api
This commit is contained in:
13
vendor/github.com/golang/mock/mockgen/tests/copyright_file/LICENSE
generated
vendored
Normal file
13
vendor/github.com/golang/mock/mockgen/tests/copyright_file/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
Copyright 2012 Google Inc.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
5
vendor/github.com/golang/mock/mockgen/tests/copyright_file/input.go
generated
vendored
Normal file
5
vendor/github.com/golang/mock/mockgen/tests/copyright_file/input.go
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
//go:generate mockgen -package empty_interface -destination mock.go -source input.go -copyright_file=LICENSE
|
||||
|
||||
package empty_interface
|
||||
|
||||
type Empty interface{}
|
46
vendor/github.com/golang/mock/mockgen/tests/copyright_file/mock.go
generated
vendored
Normal file
46
vendor/github.com/golang/mock/mockgen/tests/copyright_file/mock.go
generated
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
// Copyright 2012 Google Inc.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Code generated by MockGen. DO NOT EDIT.
|
||||
// Source: input.go
|
||||
|
||||
// Package empty_interface is a generated GoMock package.
|
||||
package empty_interface
|
||||
|
||||
import (
|
||||
gomock "github.com/golang/mock/gomock"
|
||||
)
|
||||
|
||||
// MockEmpty is a mock of Empty interface
|
||||
type MockEmpty struct {
|
||||
ctrl *gomock.Controller
|
||||
recorder *MockEmptyMockRecorder
|
||||
}
|
||||
|
||||
// MockEmptyMockRecorder is the mock recorder for MockEmpty
|
||||
type MockEmptyMockRecorder struct {
|
||||
mock *MockEmpty
|
||||
}
|
||||
|
||||
// NewMockEmpty creates a new mock instance
|
||||
func NewMockEmpty(ctrl *gomock.Controller) *MockEmpty {
|
||||
mock := &MockEmpty{ctrl: ctrl}
|
||||
mock.recorder = &MockEmptyMockRecorder{mock}
|
||||
return mock
|
||||
}
|
||||
|
||||
// EXPECT returns an object that allows the caller to indicate expected use
|
||||
func (m *MockEmpty) EXPECT() *MockEmptyMockRecorder {
|
||||
return m.recorder
|
||||
}
|
Reference in New Issue
Block a user