1 2 3 4 5 6 7 8 9
use ruststream::app; // The app builder is synchronous: the runtime calls it before the async runtime is up. #[app] async fn build() -> u8 { 0 } fn main() {}