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 Character struct + Deceased bool + FictionalCharacter bool + Gender string + Hologram bool + Mirror bool + Name string + UID string + 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) GetCharacter(ctx context.Context, uid string) (*Character, error) + func (c *Client) GetEpisode(ctx context.Context, uid string) (*Episode, error) + func (c *Client) ListCharacters(ctx context.Context, limit int) ([]Character, error) + func (c *Client) ListEpisodes(ctx context.Context, limit int) ([]Episode, error) + func (c *Client) ListSeries(ctx context.Context) ([]Series, 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 Episode struct + EpisodeNumber int + FeatureLength bool + SeasonNumber int + Series string + Title string + UID string + type Series struct + Abbreviation string + Title string + UID string