Versions in this module Expand all Collapse all v0 v0.1.0 Jul 10, 2026 Changes in this version + type Category struct + ID string + Name string + Subcats []Category + type Client struct + APIKey string + BaseURL string + HTTPClient *http.Client + UserAgent string + func New(baseURL, apiKey string, opts ...Option) *Client + func (c *Client) Capabilities(ctx context.Context) ([]Category, error) + func (c *Client) Search(ctx context.Context, opts SearchOptions) (*SearchResult, error) + type Item struct + Category string + GUID string + Grabs int + Group string + NZBURL string + Poster string + PublishDate time.Time + Size int64 + Title string + type Option func(*Client) + func WithHTTPClient(h *http.Client) Option + func WithUserAgent(ua string) Option + type SearchOptions struct + Categories []int + Group string + Limit int + Offset int + Query string + type SearchResult struct + Items []Item + Offset int + Total int