go-client/doc.go
Deivid Soto f6f24c2c3f
Some checks failed
CI / Test (push) Failing after 1s
CI / Test-1 (push) Failing after 1s
CI / Test-2 (push) Failing after 1s
CI / Lint (push) Failing after 1s
CI / Vet (push) Failing after 1s
feat: implement TorrentClaw Go API client v0.1.0
2026-03-28 11:28:48 +01:00

19 lines
668 B
Go

// Package torrentclaw provides a Go client for the TorrentClaw API,
// a torrent search engine that aggregates movies and TV shows from 30+
// international sources with TMDB metadata enrichment.
//
// Each file in this package is self-contained: it holds the types (params,
// response structs) and methods for a single API resource. Shared types
// that are referenced across multiple resources live in types.go.
//
// Usage:
//
// client := torrentclaw.NewClient(
// torrentclaw.WithAPIKey("your-api-key"),
// )
//
// resp, err := client.Search(context.Background(), torrentclaw.SearchParams{
// Query: "Inception",
// Type: "movie",
// })
package torrentclaw