make generate
This commit is contained in:
parent
1286349a22
commit
dfbc07c06d
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)
|
||||
}
|
||||
|
||||
// UpdateUserPasswordByID mocks base method
|
||||
func (m *MockStore) UpdateUserPasswordByID(arg0, arg1 string) error {
|
||||
m.ctrl.T.Helper()
|
||||
ret := m.ctrl.Call(m, "UpdateUserPasswordByID", arg0, arg1)
|
||||
ret0, _ := ret[0].(error)
|
||||
return ret0
|
||||
}
|
||||
|
||||
// UpdateUserPasswordByID indicates an expected call of UpdateUserPasswordByID
|
||||
func (mr *MockStoreMockRecorder) UpdateUserPasswordByID(arg0, arg1 interface{}) *gomock.Call {
|
||||
mr.mock.ctrl.T.Helper()
|
||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateUserPasswordByID", reflect.TypeOf((*MockStore)(nil).UpdateUserPasswordByID), arg0, arg1)
|
||||
}
|
||||
|
||||
// UpsertSharing mocks base method
|
||||
func (m *MockStore) UpsertSharing(arg0 model.Sharing) error {
|
||||
m.ctrl.T.Helper()
|
||||
|
|
Loading…
Reference in a new issue