strava-client-rs 0.2.6

Strava API Client lib
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Strava API module
//! Mods used to call the different Strava end-points
//! Documentation: https://developers.strava.com/docs/reference/

pub use self::helpers::strava_v3;
pub use self::oauth::auth;
pub use self::oauth::auth::get_authorization;
pub use self::oauth::auth::get_refresh_token;

pub mod oauth;

pub mod activities;
pub mod athlete;
pub mod club;
pub mod gear;
pub mod helpers;