## Summary
- Add `sites/imdb` package with `GetMovie()` and `Search()` methods
- `Movie` struct: ID, title, year, rating, votes, runtime, genres, director, cast, plot, poster URL, box office
- `SearchResult` struct for search results with ID, title, year
- JSON-LD parsing (primary) with DOM fallback for title
- Supports Movie, TVSeries, and TVMiniSeries types
- Box office extraction from DOM (not available in JSON-LD)
- Full mock-based test coverage
Closes #30
**Parent:** #31 (PR 17 of 18)
## Test plan
- [x] `go build ./...` passes
- [x] `go test ./...` passes
- [x] `go vet ./...` passes
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Summary
sites/imdbpackage withGetMovie()andSearch()methodsMoviestruct: ID, title, year, rating, votes, runtime, genres, director, cast, plot, poster URL, box officeSearchResultstruct for search results with ID, title, yearCloses #30
Parent: #31 (PR 17 of 18)
Test plan
go build ./...passesgo test ./...passesgo vet ./...passes