veecle_osal_api/
lib.rs

1//! The Veecle OS operating system abstraction layer API.
2
3#![no_std]
4#![cfg_attr(coverage_nightly, feature(coverage_attribute))]
5
6#[cfg(any(test, feature = "test-suites"))]
7extern crate std;
8
9mod error;
10pub mod log;
11pub mod net;
12pub mod thread;
13pub mod time;
14
15pub use error::{Error, Result};