Versions in this module Expand all Collapse all v0 v0.1.0 Jun 15, 2026 Changes in this version + const Host + type Book struct + Author string + Cover string + ISBN string + PubDate string + Publisher string + Series string + Title string + Volume string + type Client struct + func NewClient(cfg Config) *Client + func (c *Client) GetBooks(ctx context.Context, isbns string) ([]Book, error) + func (c *Client) GetCoverage(ctx context.Context) (*Coverage, error) + type Config struct + BaseURL string + Rate time.Duration + Retries int + Timeout time.Duration + UserAgent string + func DefaultConfig() Config + type Coverage struct + Count int + type Domain struct + func (Domain) Classify(input string) (string, string, error) + func (Domain) Info() kit.DomainInfo + func (Domain) Locate(t, id string) (string, error) + func (Domain) Register(app *kit.App)