encoderfile_core/
lib.rs

1#[cfg(not(tarpaulin_include))]
2mod assets;
3#[cfg(feature = "transport")]
4pub mod cli;
5pub mod common;
6pub mod error;
7#[cfg(not(tarpaulin_include))]
8#[rustfmt::skip]
9#[cfg(feature = "transport")]
10pub mod generated;
11#[cfg(feature = "transport")]
12pub mod factory;
13#[cfg(feature = "runtime")]
14pub mod inference;
15#[cfg(feature = "runtime")]
16pub mod runtime;
17#[cfg(feature = "transport")]
18pub mod server;
19#[cfg(feature = "runtime")]
20pub mod services;
21#[cfg(feature = "transforms")]
22pub mod transforms;
23#[cfg(feature = "transport")]
24pub mod transport;
25
26#[cfg(feature = "dev-utils")]
27pub mod dev_utils;
28
29pub use assets::get_banner;
30#[cfg(feature = "transport")]
31pub use factory::entrypoint;
32#[cfg(feature = "runtime")]
33pub use runtime::AppState;