summaryrefslogtreecommitdiffstats
path: root/rust/kernel/src/prelude.rs
blob: 36d9e2104f681a82da1d0ea431b3162d5008540c (plain)
1
2
3
4
5
6
7
8
9
// SPDX-License-Identifier: GPL-2.0

//! The `kernel` prelude

pub use alloc::{borrow::ToOwned, string::String};

pub use module::module;

pub use super::{println, KernelModule, KernelResult};