rtic/macros/ui/init-no-context.rs
2023-01-26 22:22:39 +01:00

13 lines
183 B
Rust

#![no_main]
#[rtic_macros::mock_app(device = mock)]
mod app {
#[shared]
struct Shared {}
#[local]
struct Local {}
#[init]
fn init() -> (Shared, Local) {}
}