Versions in this module Expand all Collapse all v0 v0.1.0 Jun 14, 2026 Changes in this version + const Host + type Article struct + Featured bool + ID int + ImageURL string + NewsSite string + PublishedAt string + Summary string + Title string + URL string + UpdatedAt string + type Client struct + func NewClient(cfg Config) *Client + func (c *Client) Article(ctx context.Context, id string) (*Article, error) + func (c *Client) Articles(ctx context.Context, opts ListOptions) ([]*Article, error) + func (c *Client) Blogs(ctx context.Context, opts ListOptions) ([]*Article, error) + func (c *Client) Reports(ctx context.Context, opts ListOptions) ([]*Article, error) + type Config struct + BaseURL string + Rate time.Duration + Retries int + Timeout time.Duration + UserAgent string + func DefaultConfig() Config + 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 ListOptions struct + Limit int + Offset int + Search string