//! 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;