dochy_intf 0.10.1

Generates the source code to access Dochy Data
1
2
3
4
5
6
7
pub(crate) fn with_old(name : &str, is_old : bool) -> String {
    if is_old {
        format!("{}_old", name)
    } else {
        name.to_string()
    }
}