1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
stageleft::stageleft_no_entry_crate!();

pub mod cluster;
pub mod distributed;

#[doc(hidden)]
#[stageleft::runtime]
#[cfg(doctest)]
mod docs {
    dfir_macro::doctest_markdown_glob!("docs/docs/hydro/**/*.md*");
}

#[stageleft::runtime]
#[cfg(test)]
mod test_init {
    #[ctor::ctor]
    fn init() {
        hydro_lang::deploy::init_test();
    }
}