Add new Wire DB methods to acme.DB interface

This commit is contained in:
Herman Slatman 2024-01-08 21:34:01 +01:00
parent abe86002ee
commit 1a711e1b91
No known key found for this signature in database
GPG Key ID: F4D8A44EA0A75A4F

View File

@ -394,3 +394,13 @@ func (m *MockDB) GetOrdersByAccountID(ctx context.Context, accID string) ([]stri
} }
return m.MockRet1.([]string), m.MockError return m.MockRet1.([]string), m.MockError
} }
// GetDpop retrieves an DPoP from the database.
func (m *MockDB) GetDpop(ctx context.Context, orderId string) (map[string]interface{}, error) {
return nil, errors.New("not implemented")
}
// CreateDpop creates DPoP resources and saves them to the DB.
func (m *MockDB) CreateDpop(ctx context.Context, orderId string, dpop map[string]interface{}) error {
return errors.New("not implemented")
}