make generate
This commit is contained in:
parent
91f51fe0b9
commit
e15728d003
1 changed files with 14 additions and 0 deletions
|
@ -427,6 +427,20 @@ func (mr *MockStoreMockRecorder) UpdateUser(arg0 interface{}) *gomock.Call {
|
|||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateUser", reflect.TypeOf((*MockStore)(nil).UpdateUser), arg0)
|
||||
}
|
||||
|
||||
// UpdateUserPassword mocks base method
|
||||
func (m *MockStore) UpdateUserPassword(arg0, arg1 string) error {
|
||||
m.ctrl.T.Helper()
|
||||
ret := m.ctrl.Call(m, "UpdateUserPassword", arg0, arg1)
|
||||
ret0, _ := ret[0].(error)
|
||||
return ret0
|
||||
}
|
||||
|
||||
// UpdateUserPassword indicates an expected call of UpdateUserPassword
|
||||
func (mr *MockStoreMockRecorder) UpdateUserPassword(arg0, arg1 interface{}) *gomock.Call {
|
||||
mr.mock.ctrl.T.Helper()
|
||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateUserPassword", reflect.TypeOf((*MockStore)(nil).UpdateUserPassword), arg0, arg1)
|
||||
}
|
||||
|
||||
// UpsertSharing mocks base method
|
||||
func (m *MockStore) UpsertSharing(arg0 model.Sharing) error {
|
||||
m.ctrl.T.Helper()
|
||||
|
|
Loading…
Reference in a new issue