1
2
3
4
5
6
7
8
9
10
11
#[allow(deprecated)]
mod add;
#[allow(deprecated)]
mod details;
mod qrcode_paintable;
mod row;

pub use details::AccountDetailsPage;
pub use qrcode_paintable::{QRCodeData, QRCodePaintable};

pub use self::{add::AccountAddDialog, row::AccountRow};