algorithmia 2.1.3

Client for calling algorithms and managing data hosted on the Algorithmia marketplace
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Interact with Algorithmia algorithms
//!
//! Instantiate from the [`Algorithmia`](../struct.Algorithmia.html) struct
pub use self::algorithm::*;
pub use self::version::*;
pub use self::entrypoint::*;

mod algorithm;
mod version;
mod macros;
mod entrypoint;