1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
macro_rules! assert_initialized_main_thread {
    () => {
        // TODO: Check if tracker is initialized and this is a thread where it's allowed to use the
        // tracker API. Or if tracker does not have such constraints then set
        // `generate_safety_asserts = false` in Gir.toml
    };
}

macro_rules! skip_assert_initialized {
    () => {};
}

mod auto;
pub mod prelude;
pub use auto::*;

//mod resource;
mod sparql_connection;
mod sparql_cursor;