shared/api/
mod.rs

1//! Endpoints and related.
2
3/// A list of the endpoints that the server will accept.
4pub mod endpoints;
5
6/// http Method.
7///
8/// _see [`Method`](Method)_
9pub mod method;
10
11#[allow(missing_docs)]
12#[deprecated]
13pub mod result;
14
15pub use endpoints::ApiEndpoint;
16pub use endpoints::PathParts;
17pub use method::Method;