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