#![doc = include_str!("../README.md")]
#![cfg_attr(feature = "no_std", no_std)]
extern crate alloc;
mod detect_anoms;
mod detector;
mod error;
mod params;
mod result;
pub use detector::AnomalyDetector;
pub use error::Error;
pub use params::{AnomalyDetectionParams, Direction};
pub use result::AnomalyDetectionResult;
pub fn params() -> AnomalyDetectionParams {
AnomalyDetectionParams::new()
}