1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! Module for the available endpoints on the crate.

/// apps endpoints
pub mod apps; 
/// dynos endpoints
pub mod dynos;
/// account endpoints
pub mod account;
/// build endpoints
pub mod builds;
/// collaborators endpoints
pub mod collaborators;
/// domain endpoints
pub mod domains;
/// OAuth Authorization
pub mod oauth;
/// pipelines
pub mod pipelines;
/// formations endpoints
pub mod formations;
/// mixed endpoints
pub mod misc; // used for those one off endpoints e.g. ratelimiting, region, stacks etc.
/// slug endpoints
pub mod slugs;
/// app review
pub mod review;
/// config vars
// app config vars, pipeline config vars, release config vars
pub mod config_vars; 
/// custom endpoints
pub mod custom;
/// releases
pub mod releases;
/// addons
pub mod addons;
/// teams
pub mod teams;
/// heroku logs
pub mod logs;