atomr-infer-cli 0.8.0

atomr-infer serve CLI binary. Boots the actor system, applies project-file [[deployment]] entries, and mounts the gateway.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # inference-cli
//!
//! `atomr-infer serve` binary plus the supporting config-loading machinery.
//! Doc ยง11.3.

#![forbid(unsafe_code)]
#![deny(rust_2018_idioms)]

pub mod config;
pub mod serve;

pub use config::{ClusterConfig, ProjectFile};
pub use serve::run_server;