muna 0.0.10

Run prediction functions in your Rust apps.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
*   Muna
*   Copyright © 2026 NatML Inc. All Rights Reserved.
*/

mod local;
mod prediction;
mod predictor;
mod remote;
mod user;

pub use prediction::*;
pub use predictor::*;
pub use user::*;