package mocks import ( "github.com/fiskerinc/cloud-services/pkg/common" "github.com/fiskerinc/cloud-services/pkg/db/queries" ) type MockRatePlan struct { queries.QueryBase SelectResponse []common.RatePlanTMobile DBMockHelper } func (m *MockRatePlan) Select(version string) (*common.RatePlanTMobile, error) { return &common.RatePlanTMobile{ Country: "US", ProductID: "12345", PlanName: "Fisker US 5G", }, nil }