ikarusdef 0.1.4

A tool describing Ikarus' capabilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::types::structs::Type;

pub mod types;

pub fn get_types() -> Vec<Type> {
    vec![crate::types::project::project_type()]
}

#[cfg(test)]
mod test {
    use crate::types::project::*;

    #[test]
    pub fn test() {
        let t = project_type();
    }
}