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;