pscand/pscand-core/src/lib.rs
NotAShelf 033e253259
initial commit
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ib131388c1056b6708b730a35011811026a6a6964
2026-02-19 00:13:08 +03:00

9 lines
253 B
Rust

pub mod config;
pub mod helpers;
pub mod logging;
pub mod scanner;
pub use config::Config;
pub use logging::{LogEntry, RingBufferLogger};
pub use scanner::{MetricValue, Scanner, ScannerError};
pub type Result<T> = std::result::Result<T, ScannerError>;