mwatch_kernel/
lib.rs

1//! Kernel types
2//!
3//! Exposes all the types the sdk may want to use, which the kernel provides
4
5#![cfg_attr(not(test), no_std)]
6
7#[macro_use]
8extern crate log;
9
10#[cfg(test)]
11#[macro_use]
12extern crate std;
13
14pub mod application;
15pub mod ingress;
16pub mod system;