Versions in this module Expand all Collapse all v0 v0.1.1 Jun 14, 2026 Changes in this version type Client + func (c *Client) Generate(ctx context.Context, p GenerateParams) ([]User, error) + type Config struct + BaseURL string + Rate time.Duration + Retries int + Timeout time.Duration + UserAgent string + func DefaultConfig() Config + type GenerateParams struct + Gender string + Nat string + Results int + Seed string + type User struct + Age int + City string + Country string + Email string + Gender string + Name string + Nat string + Phone string + State string + UUID string + Username string 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) Get(ctx context.Context, url string) ([]byte, error) + func (c *Client) GetPage(ctx context.Context, path string) (*Page, error) + func (c *Client) PageLinks(ctx context.Context, path string, limit int) ([]*Page, 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 Page struct + Body string + ID string + Title string + URL string