Versions in this module Expand all Collapse all v0 v0.1.0 Jun 14, 2026 Changes in this version + const BaseURL + const DefaultUserAgent + const Host + type Client struct + HTTP *http.Client + Rate time.Duration + Retries int + UserAgent string + func NewClient() *Client + func (c *Client) DecodeVIN(ctx context.Context, vin string) (*VINDecode, error) + func (c *Client) GetModels(ctx context.Context, make string, year int) ([]Model, error) + func (c *Client) GetVehicleTypes(ctx context.Context, make string) ([]VehicleType, error) + func (c *Client) ListMakes(ctx context.Context, limit int) ([]Make, error) + type Domain struct + func (Domain) Classify(input string) (uriType, id string, err error) + func (Domain) Info() kit.DomainInfo + func (Domain) Locate(uriType, id string) (string, error) + func (Domain) Register(app *kit.App) + type Make struct + ID int + Name string + type Model struct + MakeID int + MakeName string + ModelID int + Name string + type VINDecode struct + BodyClass string + Displacement string + DriveType string + EngineHP string + EngineModel string + FuelTypePrimary string + Make string + Model string + ModelYear string + PlantCity string + PlantCountry string + VIN string + VehicleType string + type VehicleType struct + ID int + Name string