GetAPIKeyByID mocks base method.
(ctx context.Context, id string)
| 1953 | |
| 1954 | // GetAPIKeyByID mocks base method. |
| 1955 | func (m *MockStore) GetAPIKeyByID(ctx context.Context, id string) (database.APIKey, error) { |
| 1956 | m.ctrl.T.Helper() |
| 1957 | ret := m.ctrl.Call(m, "GetAPIKeyByID", ctx, id) |
| 1958 | ret0, _ := ret[0].(database.APIKey) |
| 1959 | ret1, _ := ret[1].(error) |
| 1960 | return ret0, ret1 |
| 1961 | } |
| 1962 | |
| 1963 | // GetAPIKeyByID indicates an expected call of GetAPIKeyByID. |
| 1964 | func (mr *MockStoreMockRecorder) GetAPIKeyByID(ctx, id any) *gomock.Call { |