1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
pub mod err;
pub mod types {
    pub mod blob;
    pub mod point;
}
pub mod cache;
pub mod linker;
pub mod session;

pub type ShardId = u16;

#[macro_export]
macro_rules! if_then_else {
    ( $if:expr, $then:expr, $else:expr ) => {
        if $if {
            $then
        } else {
            $else
        }
    };
}

pub trait SqlColumns {
    fn _sql_cols(quote: &'static str) -> &'static str;
}