1
0
Fork 0
mirror of https://github.com/rtic-rs/rtic.git synced 2025-02-23 16:58:39 +01:00
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) {}
}