trakt_rs/api.rs
1//! Trakt.tv API endpoints.
2//!
3//! This module contains all the endpoints for the Trakt.tv API.
4//!
5//! Modules are organized by the API endpoint & category they represent.
6//!
7//! API documentation: [https://trakt.docs.apiary.io/](https://trakt.docs.apiary.io/)
8
9pub mod auth;
10pub mod calendars;
11pub mod certifications;
12pub mod checkin;
13pub mod comments;
14pub mod country;
15pub mod genres;
16pub mod movies;
17pub mod scrobble;
18pub mod search;
19pub mod shows;