cronback-client 0.1.0

A client library for https://cronback.me service. Cronback provides developers a reliable and flexible solution to schedule one-time, recurring cron, and on-demand webhooks.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod api;
#[cfg(feature = "admin")]
pub mod api_keys;
pub mod client;
mod constants;
mod error;
pub mod runs;
pub mod triggers;

pub use cronback_api_model::*;

pub use self::api::Response;
pub use self::client::{Client, ClientBuilder};
pub use self::constants::{BASE_URL_ENV, DEFAULT_BASE_URL};
pub use self::error::{Error, Result};