aboutsummaryrefslogtreecommitdiffstats
path: root/src/views.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-08-18 14:07:55 -0400
committerJesse Luehrs <doy@tozt.net>2019-08-18 14:07:55 -0400
commitaef8e74b849c7861dce63c0e2c1d0a8bdfa379fe (patch)
treee7f073a23258207c1037ced3d9398038a421b90a /src/views.rs
parent5d1f28420fe4ddef520a309dedaf98bd26694998 (diff)
downloadynab-reimbursements-aef8e74b849c7861dce63c0e2c1d0a8bdfa379fe.tar.gz
ynab-reimbursements-aef8e74b849c7861dce63c0e2c1d0a8bdfa379fe.zip
split out the full table view into a separate view
Diffstat (limited to 'src/views.rs')
-rw-r--r--src/views.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/views.rs b/src/views.rs
index 984a5e8..6129e53 100644
--- a/src/views.rs
+++ b/src/views.rs
@@ -1,2 +1,5 @@
mod txn_table;
-pub use txn_table::txn_tables;
+mod txn_tables;
+mod util;
+
+pub use txn_tables::TxnTables;