1 #![deny(warnings)]
2 
3 #[macro_use]
4 extern crate cfg_if;
5 #[macro_use]
6 extern crate diesel;
7 
8 mod helpers;
9 mod schema;
10 
11 mod as_changeset;
12 mod associations;
13 mod identifiable;
14 mod insertable;
15 mod queryable;
16 mod queryable_by_name;
17