rtic/rtic-macros/ui/init-pub.rs

14 lines
203 B
Rust
Raw Normal View History

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