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
26
 #![allow(non_camel_case_types)]
 #![allow(dead_code)]

pub mod fl;
pub mod widget;
pub mod group;
pub mod text;
pub mod window;
pub mod button;
pub mod frame;
pub mod input;
pub mod output;
pub mod menu;
pub mod dialog;
pub mod valuator;
pub mod browser;
pub mod image;


#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}