1 2 3 4 5 6 7 8 9 10 11
// We use const QUERY: &str for SQL queries to increase readability. This style triggers this clippy // lint error. #![allow(clippy::items_after_statements)] mod accounts; pub(crate) mod rows; mod storage; mod vault; #[cfg(test)] mod tests;