blob: c5dd98083eed14c9219625141ab08747b535e9dc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//! 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;
|