amagi 0.1.4

Rust SDK, CLI, and Web API service skeleton for multi-platform social web adapters.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Shared configuration types used by the CLI, runtime, and HTTP server.

mod app;
#[cfg(feature = "cli")]
mod logging;
#[cfg(any(feature = "cli", feature = "server"))]
mod output;
#[cfg(feature = "cli")]
mod tasks;

pub use app::*;
#[cfg(feature = "cli")]
pub use logging::*;
#[cfg(any(feature = "cli", feature = "server"))]
pub use output::*;
#[cfg(feature = "cli")]
pub use tasks::*;