1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#![allow(clippy::unit_arg)] use wll::Result; #[wll::setup] fn setup() {} #[wll::teardown] fn teardown() {} #[wll::export(do_nothing)] fn nothing() -> Result<()> { Ok(()) } fn main() {}