summaryrefslogtreecommitdiff
path: root/rust/schist_core/src/queries/accounts/mod.rs
blob: 222b180731961c04a7311c462f876209b8f21899 (plain)
1
2
3
4
5
6
7
mod delete_all;
mod get_all;
mod insert;

pub use delete_all::delete_all_accounts;
pub use get_all::get_all_accounts;
pub use insert::insert_accounts;